commit: 88ad5033a876b648c7e07d222cf808bc71273e49
parent 89c409c6d2277170f36e452e8ea316ca45989e3f
Author: Ilja <ilja@ilja.space>
Date: Mon, 21 Mar 2022 09:49:06 +0100
Use empty array for emji instead
Instead of relying on a key that isn't actually usefull, I just provide an empty array directly.
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/components/report/report.vue b/src/components/report/report.vue
@@ -31,7 +31,7 @@
<RichContent
class="report-content"
:html="report.content"
- :emoji="report.emojis"
+ :emoji="[]"
/>
<div v-if="report.statuses.length">
<small>{{ $t('report.reported_statuses') }}</small>
diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx
@@ -42,8 +42,7 @@ export default Vue.component('RichContent', {
// Emoji object, as in status.emojis, note the "s" at the end...
emoji: {
required: true,
- type: Array,
- default: () => []
+ type: Array
},
// Whether to handle links or not (posts: yes, everything else: no)
handleLinks: {