diff --git a/webapp/components/ContributionForm/ContributionForm.vue b/webapp/components/ContributionForm/ContributionForm.vue index 3bd709fd6..92000edf2 100644 --- a/webapp/components/ContributionForm/ContributionForm.vue +++ b/webapp/components/ContributionForm/ContributionForm.vue @@ -10,7 +10,7 @@
- +

this.contribution.language === o.value) : null form.categoryIds = this.categoryIds(this.contribution.categories) - form.checkbox = this.contribution.imageBlurred + form.blurImage = this.contribution.imageBlurred } return { @@ -188,7 +189,7 @@ export default { }, }, language: { required: true }, - checkbox: { required: false }, + blurImage: { required: false }, }, languageOptions, id, @@ -198,7 +199,6 @@ export default { contentMin: 3, hashtags: [], elem: null, - blurImage: form.checkbox, } }, computed: { @@ -219,6 +219,7 @@ export default { teaserImage, imageAspectRatio, categoryIds, + blurImage, } = this.form this.loading = true this.$apollo @@ -232,7 +233,7 @@ export default { language, image, imageUpload: teaserImage, - imageBlurred: this.blurImage, + imageBlurred: blurImage, imageAspectRatio, }, })