From a7346f2145cade059ea6e242c8406cf3f446ffe4 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Wed, 9 Feb 2022 20:48:19 -0700 Subject: [PATCH] Update PostComponent.vue, filter out non text comments --- resources/assets/js/components/PostComponent.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/assets/js/components/PostComponent.vue b/resources/assets/js/components/PostComponent.vue index 9499cd8df..c271c805b 100644 --- a/resources/assets/js/components/PostComponent.vue +++ b/resources/assets/js/components/PostComponent.vue @@ -1030,7 +1030,7 @@ export default { self.media = self.status.media_attachments; self.content = response.data.status.content; self.status.emojis.forEach(function(emoji) { - let img = `${emoji.shortcode}`; + let img = `${emoji.shortcode}`; self.content = self.content.replace(`:${emoji.shortcode}:`, img); }); self.likesPage = 2; @@ -1384,9 +1384,9 @@ export default { axios.get(url) .then(response => { let self = this; - this.results = this.layout == 'metro' ? - _.reverse(response.data.data) : - response.data.data; + this.results = response.data.data.filter(p => { + return p.pf_type == 'text'; + }); this.pagination = response.data.meta.pagination; if(this.results.length > 0) { $('.load-more-link').removeClass('d-none');