From 7ec2259ea5e4fd2cded89cfe893cd8df68b0f5d1 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Tue, 15 Jan 2019 14:18:54 +0100 Subject: [PATCH] Typo Signed-off-by: Thomas Citharel --- js/src/graphql/event.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/src/graphql/event.ts b/js/src/graphql/event.ts index d42ef03f..3b3ee179 100644 --- a/js/src/graphql/event.ts +++ b/js/src/graphql/event.ts @@ -84,7 +84,7 @@ export const CREATE_EVENT = gql` $description: String!, $organizerActorId: Int!, $categoryId: Int!, - $beginsOn: DateTime!, + $beginsOn: DateTime! ) { createEvent( title: $title, @@ -92,6 +92,7 @@ export const CREATE_EVENT = gql` beginsOn: $beginsOn, organizerActorId: $organizerActorId, categoryId: $categoryId + ) } `; @@ -100,7 +101,7 @@ export const EDIT_EVENT = gql` $title: String!, $description: String!, $organizerActorId: Int!, - $categoryId: Int!, + $categoryId: Int! ) { EditEvent(title: $title, description: $description, organizerActorId: $organizerActorId, categoryId: $categoryId) { uuid