diff --git a/resources/assets/js/components/PostComponent.vue b/resources/assets/js/components/PostComponent.vue
index 03790913e..9499cd8df 100644
--- a/resources/assets/js/components/PostComponent.vue
+++ b/resources/assets/js/components/PostComponent.vue
@@ -125,7 +125,7 @@
@@ -241,11 +241,18 @@
replyText: '',
replyNsfw: false,
emoji: window.App.util.emoji,
+ content: undefined
}
},
mounted() {
+ let self = this;
this.profile = window._sharedData.curUser;
+ this.content = this.status.content;
+ this.status.emojis.forEach(function(emoji) {
+ let img = `
`;
+ self.content = self.content.replace(`:${emoji.shortcode}:`, img);
+ });
},
methods: {