This is an automated email from the ASF dual-hosted git repository.

qiuxiafan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


The following commit(s) were added to refs/heads/main by this push:
     new 78f0096  add menu for virtual mq (#173)
78f0096 is described below

commit 78f0096c000b10e3ee01a624232cf00d90356cc4
Author: pg.yang <[email protected]>
AuthorDate: Thu Oct 20 20:36:28 2022 +0800

    add menu for virtual mq (#173)
---
 src/locales/lang/en.ts     |  1 +
 src/locales/lang/es.ts     |  1 +
 src/locales/lang/zh.ts     |  1 +
 src/router/data/general.ts | 16 ++++++++++++++++
 4 files changed, 19 insertions(+)

diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts
index bf023f0..f3f4010 100644
--- a/src/locales/lang/en.ts
+++ b/src/locales/lang/en.ts
@@ -348,5 +348,6 @@ const msg = {
     "Notice: Please press Enter after inputting a key of content, exclude key 
of content(key=value).",
   language: "Language",
   gateway: "Gateway",
+  virtualMQ: "Virtual MQ"
 };
 export default msg;
diff --git a/src/locales/lang/es.ts b/src/locales/lang/es.ts
index b1219ba..83228a5 100644
--- a/src/locales/lang/es.ts
+++ b/src/locales/lang/es.ts
@@ -351,5 +351,6 @@ const msg = {
     "Aviso: Por favor presione Intro después de introducir una clave de 
contenido, excluir clave de contenido(clave=valor).",
   language: "Lenguaje",
   gateway: "Puerta",
+  virtualMQ: "MQ virtual",
 };
 export default msg;
diff --git a/src/locales/lang/zh.ts b/src/locales/lang/zh.ts
index 90e80e0..e27dc77 100644
--- a/src/locales/lang/zh.ts
+++ b/src/locales/lang/zh.ts
@@ -348,5 +348,6 @@ const msg = {
     "请输入一个内容关键词或者内容不包含的关键词(key=value)之后回车",
   language: "语言",
   gateway: "网关",
+  virtualMQ: "虚拟消息队列",
 };
 export default msg;
diff --git a/src/router/data/general.ts b/src/router/data/general.ts
index b6ba797..aecec2b 100644
--- a/src/router/data/general.ts
+++ b/src/router/data/general.ts
@@ -73,6 +73,22 @@ export default [
           layer: "VIRTUAL_CACHE",
         },
       },
+      {
+        path: "/mq",
+        name: "VirtualMQ",
+        meta: {
+          title: "virtualMQ",
+          layer: "VIRTUAL_MQ",
+        },
+      },
+      {
+        path: "/mq/tab/:activeTabIndex",
+        name: "VirtualMQActiveTabIndex",
+        meta: {
+          notShow: true,
+          layer: "VIRTUAL_MQ",
+        },
+      },      
     ],
   },
 ];

Reply via email to