From 283d922ab6d1f140b32154872d0364aafb00c1c4 Mon Sep 17 00:00:00 2001 From: Fine Date: Wed, 27 Nov 2024 09:56:43 +0800 Subject: [PATCH] fix --- src/locales/lang/en.ts | 1 + src/locales/lang/es.ts | 1 + src/locales/lang/zh.ts | 1 + src/views/dashboard/controls/AsyncProfiling.vue | 3 +-- .../dashboard/related/async-profiling/components/TaskList.vue | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts index ca54cf19..5640a21d 100644 --- a/src/locales/lang/en.ts +++ b/src/locales/lang/en.ts @@ -394,5 +394,6 @@ const msg = { successInstances: "Success Instances", profilingEvents: "Async Profiling Events", execArgs: "Exec Args", + instances: "Instances", }; export default msg; diff --git a/src/locales/lang/es.ts b/src/locales/lang/es.ts index 26cd958b..4496b367 100644 --- a/src/locales/lang/es.ts +++ b/src/locales/lang/es.ts @@ -394,5 +394,6 @@ const msg = { successInstances: "Success Instances", profilingEvents: "Async Profiling Events", execArgs: "Exec Args", + instances: "Instances", }; export default msg; diff --git a/src/locales/lang/zh.ts b/src/locales/lang/zh.ts index 981ef4ce..800d8c78 100644 --- a/src/locales/lang/zh.ts +++ b/src/locales/lang/zh.ts @@ -392,5 +392,6 @@ const msg = { successInstances: "成功的实例", profilingEvents: "异步分析事件", execArgs: "String任务扩展", + instances: "实例", }; export default msg; diff --git a/src/views/dashboard/controls/AsyncProfiling.vue b/src/views/dashboard/controls/AsyncProfiling.vue index 4b0466cf..9f1bef8b 100644 --- a/src/views/dashboard/controls/AsyncProfiling.vue +++ b/src/views/dashboard/controls/AsyncProfiling.vue @@ -24,7 +24,7 @@ limitations under the License. --> {{ t("delete") }} -
+
@@ -42,7 +42,6 @@ limitations under the License. --> default: () => ({ graph: {} }), }, activeIndex: { type: String, default: "" }, - needQuery: { type: Boolean, default: true }, }); const { t } = useI18n(); const dashboardStore = useDashboardStore(); diff --git a/src/views/dashboard/related/async-profiling/components/TaskList.vue b/src/views/dashboard/related/async-profiling/components/TaskList.vue index 0cf0cf8a..e2bd9b4a 100644 --- a/src/views/dashboard/related/async-profiling/components/TaskList.vue +++ b/src/views/dashboard/related/async-profiling/components/TaskList.vue @@ -64,7 +64,7 @@ limitations under the License. --> {{ service }}
- {{ t("serviceInstanceIds") }}: + {{ t("instances") }}: {{ asyncProfilingStore.selectedTask.serviceInstanceIds.join(", ") }}