From 792ae8d598e39049478e1833f1400f33cb067289 Mon Sep 17 00:00:00 2001 From: Alexander Friedland Date: Fri, 13 Dec 2019 13:39:51 +0100 Subject: [PATCH] change line 152 ".ds-card-imag" TO ".ds-card-image" --- webapp/components/PostCard/PostCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/PostCard/PostCard.vue b/webapp/components/PostCard/PostCard.vue index 0b7632ec3..03abbf860 100644 --- a/webapp/components/PostCard/PostCard.vue +++ b/webapp/components/PostCard/PostCard.vue @@ -149,7 +149,7 @@ export default { mounted() { const width = this.$el.offsetWidth const height = Math.min(width / this.post.imageAspectRatio, 2000) - const imageElement = this.$el.querySelector('.ds-card-imag') + const imageElement = this.$el.querySelector('.ds-card-image') if (imageElement) { imageElement.style.height = `${height}px`