diff --git a/resources/assets/components/partials/sidebar.vue b/resources/assets/components/partials/sidebar.vue
index 7c2891092..6e7933f0d 100644
--- a/resources/assets/components/partials/sidebar.vue
+++ b/resources/assets/components/partials/sidebar.vue
@@ -132,7 +132,7 @@
-
+
{{ $t('navmenu.groups') }}
@@ -426,25 +426,20 @@
hasNetworkTimeline: false,
hasLiveStreams: false,
hasStories: false,
+ hasGroups: false,
}
},
mounted() {
if(window.App.config.features.hasOwnProperty('timelines')) {
this.hasLocalTimeline = App.config.features.timelines.local;
- this.hasNetworkTimeline = App.config.features.timelines.network;
+ this.hasNetworkTimeline = App.config.features.timelines.network;
+ this.hasGroups = App.config.features.groups;
//this.hasLiveStreams = App.config.ab.hls == true;
}
if(window.App.config.features.hasOwnProperty('stories')) {
this.hasStories = App.config.features.stories;
}
- // if(!this.user.username) {
- // this.user = window._sharedData.user;
- // }
- // setTimeout(() => {
- // this.user = window._sharedData.curUser;
- // this.loaded = true;
- // }, 300);
},
methods: {