diff --git a/webapp/components/ContributionForm/ContributionForm.vue b/webapp/components/ContributionForm/ContributionForm.vue index b5777ce0b..1a9c8b168 100644 --- a/webapp/components/ContributionForm/ContributionForm.vue +++ b/webapp/components/ContributionForm/ContributionForm.vue @@ -310,7 +310,7 @@ export default { }, methods: { notBeforeToday(date) { - return date < new Date(new Date().setHours(0, 0, 0, 0)); + return date < new Date(new Date().setHours(0, 0, 0, 0)) }, submit() { let image = null diff --git a/webapp/pages/post/_id/_slug/index.vue b/webapp/pages/post/_id/_slug/index.vue index 202f4b702..0d8c30f55 100644 --- a/webapp/pages/post/_id/_slug/index.vue +++ b/webapp/pages/post/_id/_slug/index.vue @@ -57,7 +57,11 @@ - + {{ $t('post.viewEvent.eventStart') }}: {{ post.eventStart }} @@ -74,7 +78,9 @@ - {{ $t('post.viewEvent.eventLocationName') }}: + + {{ $t('post.viewEvent.eventLocationName') }}: + {{ post.eventLocationName }} diff --git a/webapp/pages/post/create.vue b/webapp/pages/post/create.vue index 24f7a2539..c282af776 100644 --- a/webapp/pages/post/create.vue +++ b/webapp/pages/post/create.vue @@ -1,41 +1,53 @@