diff --git a/webapp/components/ContributionForm/ContributionForm.vue b/webapp/components/ContributionForm/ContributionForm.vue index 8fdc1d65c..cdbb5701b 100644 --- a/webapp/components/ContributionForm/ContributionForm.vue +++ b/webapp/components/ContributionForm/ContributionForm.vue @@ -29,7 +29,6 @@ type="checkbox" id="blur-img" v-model="blurImage" - @change="form.checkbox = blurImage" /> {{ $t('contribution.shockingPicture-text') }} @@ -201,12 +200,7 @@ export default { contentMin: 3, hashtags: [], elem: null, - blurImage: false, - } - }, - mounted() { - if (this.contribution && this.contribution.blurImage === true) { - this.blurImage = true + blurImage: form.checkbox, } }, computed: { @@ -240,7 +234,7 @@ export default { language, image, imageUpload: teaserImage, - blurImage: this.form.checkbox, + blurImage: this.blurImage, imageAspectRatio, }, })