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