This commit is contained in:
2019-12-18 23:58:34 +00:00
parent 56a031e9ac
commit ce9c9da58e
6 changed files with 14 additions and 14 deletions

View File

@@ -474,15 +474,15 @@ export default function initialize() {
// ARCHIVE
sub.push({
title: window.$gz.locale.get("ARCHIVE DATA"),
icon: "archive",
route: "/archives",
title: window.$gz.locale.get("Backup"),
icon: "backup",
route: "/backup",
key: key++
});
// JOBS
sub.push({
title: window.$gz.locale.get("SERVER JOBS"),
title: window.$gz.locale.get("ServerJobs"),
icon: "robot",
route: "/jobs",
key: key++
@@ -490,7 +490,7 @@ export default function initialize() {
// LOGS
sub.push({
title: window.$gz.locale.get("Log"),
title: window.$gz.locale.get("ServerLog"),
icon: "history",
route: "/serverlogs",
key: key++
@@ -498,7 +498,7 @@ export default function initialize() {
//METRICS
sub.push({
title: window.$gz.locale.get("SERVER METRICS"),
title: window.$gz.locale.get("ServerMetrics"),
icon: "file-medical-alt",
route: "/metrics",
key: key++

View File

@@ -337,10 +337,10 @@ export default new Router({
},
{
path: "/archives",
name: "archives",
path: "/backup",
name: "backup",
component: () =>
import(/* webpackChunkName: "operations" */ "./views/archives.vue")
import(/* webpackChunkName: "operations" */ "./views/backup.vue")
},
{

View File

@@ -13,8 +13,8 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "archive",
title: window.$gz.locale.get("ARCHIVE DATA"),
helpUrl: "user-form-archives"
title: window.$gz.locale.get("Backup"),
helpUrl: "user-form-backup"
});
}
};

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "robot",
title: window.$gz.locale.get("SERVER JOBS"),
title: window.$gz.locale.get("ServerJobs"),
helpUrl: "user-form-jobs"
});
}

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "file-medical-alt",
title: window.$gz.locale.get("SERVER METRICS"),
title: window.$gz.locale.get("ServerMetrics"),
helpUrl: "user-form-server-metrics"
});
}

View File

@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "history",
title: window.$gz.locale.get("Log"),
title: window.$gz.locale.get("ServerLog"),
helpUrl: "user-form-server-logs"
});
}