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

View File

@@ -337,10 +337,10 @@ export default new Router({
}, },
{ {
path: "/archives", path: "/backup",
name: "archives", name: "backup",
component: () => 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", { window.$gz.eventBus.$emit("menu-change", {
isMain: true, isMain: true,
icon: "archive", icon: "archive",
title: window.$gz.locale.get("ARCHIVE DATA"), title: window.$gz.locale.get("Backup"),
helpUrl: "user-form-archives" helpUrl: "user-form-backup"
}); });
} }
}; };

View File

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

View File

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

View File

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