From df86812fc0f8f4a2b04f1ce03a4f953dc0271a95 Mon Sep 17 00:00:00 2001 From: Markus Date: Wed, 17 May 2023 16:17:02 +0200 Subject: [PATCH] added missing eventLocationName to _EventInputs --- backend/src/schema/types/type/Post.gql | 1 + webapp/components/ContributionForm/ContributionForm.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/backend/src/schema/types/type/Post.gql b/backend/src/schema/types/type/Post.gql index f8772e005..ae35bd39d 100644 --- a/backend/src/schema/types/type/Post.gql +++ b/backend/src/schema/types/type/Post.gql @@ -196,6 +196,7 @@ input _EventInput { eventEnd: String eventLocation: String eventVenue: String + eventLocationName: String eventIsOnline: Boolean } diff --git a/webapp/components/ContributionForm/ContributionForm.vue b/webapp/components/ContributionForm/ContributionForm.vue index ae887d1d3..7d3d1bc23 100644 --- a/webapp/components/ContributionForm/ContributionForm.vue +++ b/webapp/components/ContributionForm/ContributionForm.vue @@ -288,6 +288,7 @@ export default { eventVenue: this.formData.eventVenue, eventEnd: this.formData.eventEnd, eventIsOnline: this.formData.eventIsOnline, + eventLocationName: this.formData.eventLocationName } } return undefined