mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 09:00:50 +00:00
address feedback
This commit is contained in:
parent
499c8b8d08
commit
d312c02759
@ -122,6 +122,7 @@ const msg = {
|
||||
linux: "Linux",
|
||||
editWarning: "You are entering edit mode",
|
||||
viewWarning: "You are entering view mode",
|
||||
virtualDatabase: "Virtual Database",
|
||||
reloadDashboards: "Reload dashboards",
|
||||
kubernetesService: "Service",
|
||||
kubernetesCluster: "Cluster",
|
||||
|
@ -124,6 +124,7 @@ const msg = {
|
||||
linux: "Linux",
|
||||
editWarning: "Estás entrando en modo edición",
|
||||
viewWarning: "Estás entrando en modo visualización",
|
||||
virtualDatabase: "Base de Datos Virtual",
|
||||
reloadDashboards: "Recargar Panel",
|
||||
kubernetesService: "Servicio",
|
||||
kubernetesCluster: "Cluster",
|
||||
|
@ -120,6 +120,7 @@ const msg = {
|
||||
browser: "浏览器",
|
||||
editWarning: "你正在进入编辑模式",
|
||||
viewWarning: "你正在进入预览模式",
|
||||
virtualDatabase: "虚拟数据库",
|
||||
reloadDashboards: "重新加载仪表盘",
|
||||
kubernetesService: "服务",
|
||||
kubernetesCluster: "集群",
|
||||
|
@ -17,13 +17,14 @@
|
||||
import { RouteRecordRaw } from "vue-router";
|
||||
import Layout from "@/layout/Index.vue";
|
||||
|
||||
export const routesMySQL: Array<RouteRecordRaw> = [
|
||||
export const routesDatabase: Array<RouteRecordRaw> = [
|
||||
{
|
||||
path: "",
|
||||
name: "MySQL",
|
||||
meta: {
|
||||
title: "mySQL",
|
||||
title: "database",
|
||||
icon: "storage",
|
||||
hasGroup: true,
|
||||
},
|
||||
redirect: "/mySQL",
|
||||
component: Layout,
|
@ -53,7 +53,7 @@ export const routesGen: Array<RouteRecordRaw> = [
|
||||
path: "/database",
|
||||
name: "Database",
|
||||
meta: {
|
||||
title: "database",
|
||||
title: "virtualDatabase",
|
||||
exact: true,
|
||||
},
|
||||
component: () =>
|
||||
|
@ -17,7 +17,7 @@
|
||||
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
|
||||
import { routesGen } from "./general";
|
||||
import { routesMesh } from "./serviceMesh";
|
||||
import { routesMySQL } from "./mySQL";
|
||||
import { routesDatabase } from "./database";
|
||||
import { routesInfra } from "./infrastructure";
|
||||
import { routesDashboard } from "./dashboard";
|
||||
import { routesSetting } from "./setting";
|
||||
@ -34,7 +34,7 @@ const routes: Array<RouteRecordRaw> = [
|
||||
...routesK8s,
|
||||
...routesInfra,
|
||||
...routesBrowser,
|
||||
...routesMySQL,
|
||||
...routesDatabase,
|
||||
...routesSelf,
|
||||
...routesDashboard,
|
||||
...routesAlarm,
|
||||
|
Loading…
Reference in New Issue
Block a user