aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/report/report.vue2
-rw-r--r--src/components/rich_content/rich_content.jsx3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/components/report/report.vue b/src/components/report/report.vue
index c7766f84..1dc73203 100644
--- 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
index 7096ca49..46bc661a 100644
--- 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: {