forked from potsda.mn/mobilizon
Typo
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
7709c2c566
commit
7ec2259ea5
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue