You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2023/03/16 09:44:32 UTC

[skywalking-booster-ui] branch main updated: fix: alerting link (#244)

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

wusheng 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 1c905ae  fix: alerting link (#244)
1c905ae is described below

commit 1c905aeb06669d554680ed9ffdfb69d217423fff
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Thu Mar 16 17:44:25 2023 +0800

    fix: alerting link (#244)
---
 src/views/dashboard/related/topology/components/Graph.vue | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/dashboard/related/topology/components/Graph.vue b/src/views/dashboard/related/topology/components/Graph.vue
index 6137a51..9d7ac03 100644
--- a/src/views/dashboard/related/topology/components/Graph.vue
+++ b/src/views/dashboard/related/topology/components/Graph.vue
@@ -228,7 +228,7 @@ limitations under the License. -->
     }
     items.value = [
       { id: "inspect", title: "Inspect", func: handleInspect },
-      { id: "alarm", title: "Alarm", func: handleGoAlarm },
+      { id: "alerting", title: "Alerting", func: handleGoAlerting },
     ];
   }
   function handleLinkClick(event: PointerEvent, d: Call) {
@@ -401,8 +401,8 @@ limitations under the License. -->
     window.open(routeUrl.href, "_blank");
     dashboardStore.setEntity(origin);
   }
-  function handleGoAlarm() {
-    const path = `/alarm`;
+  function handleGoAlerting() {
+    const path = `/alerting`;
     const routeUrl = router.resolve({ path });
 
     window.open(routeUrl.href, "_blank");
@@ -447,7 +447,7 @@ limitations under the License. -->
   function setNodeTools(nodeDashboard: any) {
     items.value = [
       { id: "inspect", title: "Inspect", func: handleInspect },
-      { id: "alarm", title: "Alarm", func: handleGoAlarm },
+      { id: "alerting", title: "Alerting", func: handleGoAlerting },
     ];
     if (!(nodeDashboard && nodeDashboard.length)) {
       return;