File tree Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { faEnvelopeOpen } from "@fortawesome/free-solid-svg-icons";
7
7
8
8
<template >
9
9
<RouterLink :to =" routeLinks.messages.root" >
10
- <FAIcon :icon =" faEnvelopeOpen" title = " All Messages" />
10
+ <FAIcon :icon =" faEnvelopeOpen" v-tippy = " ' All Messages' " />
11
11
<span class =" navbar-label" >All Messages</span >
12
12
</RouterLink >
13
13
</template >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const displayDanger = computed(() => {
24
24
25
25
<template >
26
26
<RouterLink :to =" routeLinks.configuration.root" exact >
27
- <FAIcon :icon =" faGear" title = " Configuration" />
27
+ <FAIcon :icon =" faGear" v-tippy = " ' Configuration' " />
28
28
<span class =" navbar-label" >Configuration</span >
29
29
<exclamation-mark :type =" WarningLevel.Danger" v-if =" displayDanger" />
30
30
<exclamation-mark :type =" WarningLevel.Warning" v-else-if =" displayWarn" />
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const { failingCount } = storeToRefs(store);
12
12
13
13
<template >
14
14
<RouterLink :to =" routeLinks.customChecks" >
15
- <FAIcon :icon =" faCheck" title = " Custom Checks" />
15
+ <FAIcon :icon =" faCheck" v-tippy = " ' Custom Checks' " />
16
16
<span class =" navbar-label" >Custom Checks</span >
17
17
<span v-if =" failingCount > 0" class =" badge badge-important" >{{ failingCount }}</span >
18
18
</RouterLink >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import FAIcon from "@/components/FAIcon.vue";
7
7
8
8
<template >
9
9
<RouterLink :to =" routeLinks.dashboard" >
10
- <FAIcon :icon =" faGauge" title = " Dashboard" />
10
+ <FAIcon :icon =" faGauge" v-tippy = " ' Dashboard' " />
11
11
<span class =" navbar-label" >Dashboard</span >
12
12
</RouterLink >
13
13
</template >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { faListUl } from "@fortawesome/free-solid-svg-icons";
7
7
8
8
<template >
9
9
<RouterLink :to =" routeLinks.events" >
10
- <FAIcon :icon =" faListUl" title = " Events" />
10
+ <FAIcon :icon =" faListUl" v-tippy = " ' Events' " />
11
11
<span class =" navbar-label" >Events</span >
12
12
</RouterLink >
13
13
</template >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { faEnvelope } from "@fortawesome/free-solid-svg-icons";
8
8
9
9
<template >
10
10
<RouterLink :to =" routeLinks.failedMessage.root" >
11
- <FAIcon :icon =" faEnvelope" title = " Failed Messages" />
11
+ <FAIcon :icon =" faEnvelope" v-tippy = " ' Failed Messages' " />
12
12
<span class =" navbar-label" >Failed Messages</span >
13
13
<span v-if =" stats.number_of_failed_messages > 0" class =" badge badge-important" >{{ stats.number_of_failed_messages }}</span >
14
14
</RouterLink >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const { failedHeartbeatsCount } = storeToRefs(useHeartbeatsStore());
11
11
12
12
<template >
13
13
<RouterLink aria-label =" Heartbeats Menu Item" :to =" routeLinks.heartbeats.root" >
14
- <FAIcon :icon =" faHeartPulse" title = " Heartbeats" />
14
+ <FAIcon :icon =" faHeartPulse" v-tippy = " ' Heartbeats' " />
15
15
<span class =" navbar-label" >Heartbeats</span >
16
16
<span v-if =" failedHeartbeatsCount > 0" class =" badge badge-important" aria-label =" Alert Count" >{{ failedHeartbeatsCount }}</span >
17
17
</RouterLink >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { faChartLine } from "@fortawesome/free-solid-svg-icons";
8
8
9
9
<template >
10
10
<RouterLink :to =" routeLinks.monitoring.root" >
11
- <FAIcon :icon =" faChartLine" title = " Monitoring" />
11
+ <FAIcon :icon =" faChartLine" v-tippy = " ' Monitoring' " />
12
12
<span class =" navbar-label" >Monitoring</span >
13
13
<span v-if =" stats.number_of_disconnected_endpoints > 0" class =" badge badge-important" >{{ stats.number_of_disconnected_endpoints }}</span >
14
14
</RouterLink >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { faFileLines } from "@fortawesome/free-solid-svg-icons";
7
7
8
8
<template >
9
9
<RouterLink :to =" routeLinks.throughput.root" >
10
- <FAIcon :icon =" faFileLines" title = " Usage" />
10
+ <FAIcon :icon =" faFileLines" v-tippy = " ' Usage' " />
11
11
<span class =" navbar-label" >Usage</span >
12
12
</RouterLink >
13
13
</template >
You can’t perform that action at this time.
0 commit comments