diff options
| author | lambda <pleromagit@rogerbraun.net> | 2018-05-09 14:12:59 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2018-05-09 14:12:59 +0000 |
| commit | 622e8cd94feae777290236c5d5126343da93f142 (patch) | |
| tree | e628050fb732ea04c154bddbde844195652b09d2 /src/App.js | |
| parent | e341354cc7d3d83982ff5983b3433c35fc044bbf (diff) | |
| parent | 36b1c09831c809722c730a102af3d224597578be (diff) | |
Merge branch 'feature/who-to-follow-panel-configurable' into 'develop'
Who to follow panel (configurable)
See merge request pleroma/pleroma-fe!254
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2,6 +2,7 @@ import UserPanel from './components/user_panel/user_panel.vue' import NavPanel from './components/nav_panel/nav_panel.vue' import Notifications from './components/notifications/notifications.vue' import UserFinder from './components/user_finder/user_finder.vue' +import WhoToFollowPanel from './components/who_to_follow_panel/who_to_follow_panel.vue' import InstanceSpecificPanel from './components/instance_specific_panel/instance_specific_panel.vue' import ChatPanel from './components/chat_panel/chat_panel.vue' @@ -12,8 +13,9 @@ export default { NavPanel, Notifications, UserFinder, - ChatPanel, - InstanceSpecificPanel + WhoToFollowPanel, + InstanceSpecificPanel, + ChatPanel }, data: () => ({ mobileActivePanel: 'timeline' @@ -27,6 +29,7 @@ export default { style () { return { 'background-image': `url(${this.background})` } }, sitename () { return this.$store.state.config.name }, chat () { return this.$store.state.chat.channel.state === 'joined' }, + showWhoToFollowPanel () { return this.$store.state.config.showWhoToFollowPanel }, showInstanceSpecificPanel () { return this.$store.state.config.showInstanceSpecificPanel } }, methods: { |
