This commit is contained in:
@@ -5,7 +5,6 @@
|
|||||||
<!-- <gztest ref="gztest"></gztest> -->
|
<!-- <gztest ref="gztest"></gztest> -->
|
||||||
<v-navigation-drawer v-if="isAuthenticated" v-model="drawer" app>
|
<v-navigation-drawer v-if="isAuthenticated" v-model="drawer" app>
|
||||||
<v-list dense>
|
<v-list dense>
|
||||||
|
|
||||||
<v-list-item
|
<v-list-item
|
||||||
v-for="item in navItems"
|
v-for="item in navItems"
|
||||||
:key="item.route"
|
:key="item.route"
|
||||||
@@ -18,7 +17,6 @@
|
|||||||
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
||||||
</v-list-item-content>
|
</v-list-item-content>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
|
|
||||||
</v-list>
|
</v-list>
|
||||||
</v-navigation-drawer>
|
</v-navigation-drawer>
|
||||||
<v-app-bar
|
<v-app-bar
|
||||||
|
|||||||
@@ -66,6 +66,20 @@ export default function initialize() {
|
|||||||
//3rd level items under preferences
|
//3rd level items under preferences
|
||||||
var subSub = [];
|
var subSub = [];
|
||||||
|
|
||||||
|
//LOCALE
|
||||||
|
subSub.push({
|
||||||
|
title: window.$gz.locale.get("Locale"),
|
||||||
|
icon: "language",
|
||||||
|
route: "/locale"
|
||||||
|
});
|
||||||
|
|
||||||
|
//LOGIN
|
||||||
|
subSub.push({
|
||||||
|
title: window.$gz.locale.get("SetLoginPassword"),
|
||||||
|
icon: "key",
|
||||||
|
route: "/changepw"
|
||||||
|
});
|
||||||
|
|
||||||
//Preferences (personal)
|
//Preferences (personal)
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("UserPreferences"),
|
title: window.$gz.locale.get("UserPreferences"),
|
||||||
|
|||||||
Reference in New Issue
Block a user