@@ -80,6 +97,7 @@
+
this.contribution.language === o.value)
: null
form.categoryIds = this.categoryIds(this.contribution.categories)
+ form.blurImage = this.contribution.imageBlurred
}
+
return {
form,
formSchema: {
@@ -167,6 +189,7 @@ export default {
},
},
language: { required: true },
+ blurImage: { required: false },
},
languageOptions,
id,
@@ -175,6 +198,7 @@ export default {
users: [],
contentMin: 3,
hashtags: [],
+ elem: null,
}
},
computed: {
@@ -195,6 +219,7 @@ export default {
teaserImage,
imageAspectRatio,
categoryIds,
+ blurImage,
} = this.form
this.loading = true
this.$apollo
@@ -208,6 +233,7 @@ export default {
language,
image,
imageUpload: teaserImage,
+ imageBlurred: blurImage,
imageAspectRatio,
},
})
@@ -273,28 +299,35 @@ export default {
}
-
diff --git a/webapp/components/PostCard/PostCard.vue b/webapp/components/PostCard/PostCard.vue
index 0a4ced550..f9c1fa325 100644
--- a/webapp/components/PostCard/PostCard.vue
+++ b/webapp/components/PostCard/PostCard.vue
@@ -2,7 +2,12 @@
-
-
diff --git a/webapp/components/TeaserImage/TeaserImage.vue b/webapp/components/TeaserImage/TeaserImage.vue
index 95d94d70f..a08b9e0ef 100644
--- a/webapp/components/TeaserImage/TeaserImage.vue
+++ b/webapp/components/TeaserImage/TeaserImage.vue
@@ -140,7 +140,7 @@ export default {