diff --git a/src/components/chat_title/chat_title.vue b/src/components/chat_title/chat_title.vue
index 72660cca0..00521260f 100644
--- a/src/components/chat_title/chat_title.vue
+++ b/src/components/chat_title/chat_title.vue
@@ -19,6 +19,7 @@
:title="'@'+(user && user.screen_name_ui)"
:html="htmlTitle"
:emoji="user.emoji || []"
+ :is-local="user.is_local"
/>
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue
index 0930e0990..648bdb41f 100644
--- a/src/components/notification/notification.vue
+++ b/src/components/notification/notification.vue
@@ -62,6 +62,7 @@
:title="'@'+notification.from_profile.screen_name_ui"
:html="notification.from_profile.name_html"
:emoji="notification.from_profile.emoji"
+ :is-local="notification.from_profile.is_local"
/>
diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx
index ac04c538e..cdad60f74 100644
--- a/src/components/rich_content/rich_content.jsx
+++ b/src/components/rich_content/rich_content.jsx
@@ -86,6 +86,12 @@ export default {
required: false,
type: Boolean,
default: false
+ },
+ // Assume is local to be true if unspecified, so the button isn't show where it probably should not be
+ isLocal: {
+ required: false,
+ type: Boolean,
+ default: true
}
},
// NEVER EVER TOUCH DATA INSIDE RENDER
@@ -165,9 +171,11 @@ export default {
return