aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2021-06-03 20:16:48 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2021-06-03 20:16:48 +0000
commit2725a0c6398a876590b458ff1a8d6c2cc9af1d11 (patch)
tree48ee536d6f931f1cd8b76e4ede75639b39c28501 /src/App.js
parent7bd18cda64e0a4ca7a61ff2cf69714f23281e9d9 (diff)
parentbd98ecb3f0e3d37d7286221a6508a059394b94f2 (diff)
Merge branch 'chore/rename-chat' into 'develop'
Rename legacy PleromaFE Chat functionality to "Shout" See merge request pleroma/pleroma-fe!1207
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/App.js b/src/App.js
index 231c6ae1..fe4c30cb 100644
--- a/src/App.js
+++ b/src/App.js
@@ -4,7 +4,7 @@ import Notifications from './components/notifications/notifications.vue'
import InstanceSpecificPanel from './components/instance_specific_panel/instance_specific_panel.vue'
import FeaturesPanel from './components/features_panel/features_panel.vue'
import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue'
-import ChatPanel from './components/chat_panel/chat_panel.vue'
+import ShoutPanel from './components/shout_panel/shout_panel.vue'
import SettingsModal from './components/settings_modal/settings_modal.vue'
import MediaModal from './components/media_modal/media_modal.vue'
import SideDrawer from './components/side_drawer/side_drawer.vue'
@@ -26,7 +26,7 @@ export default {
InstanceSpecificPanel,
FeaturesPanel,
WhoToFollowPanel,
- ChatPanel,
+ ShoutPanel,
MediaModal,
SideDrawer,
MobilePostStatusButton,
@@ -65,7 +65,7 @@ export default {
}
}
},
- chat () { return this.$store.state.chat.channel.state === 'joined' },
+ shout () { return this.$store.state.shout.channel.state === 'joined' },
suggestionsEnabled () { return this.$store.state.instance.suggestionsEnabled },
showInstanceSpecificPanel () {
return this.$store.state.instance.showInstanceSpecificPanel &&