File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { faEnvelopeOpen } from "@fortawesome/free-solid-svg-icons";
77
88<template >
99 <RouterLink :to =" routeLinks .messages .root " >
10- <FAIcon :icon =" faEnvelopeOpen " v-tippy = " ' All Messages' " />
10+ <FAIcon :icon =" faEnvelopeOpen " title=" All Messages" />
1111 <span class =" navbar-label" >All Messages</span >
1212 </RouterLink >
1313</template >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const displayDanger = computed(() => {
2424
2525<template >
2626 <RouterLink :to =" routeLinks .configuration .root " exact>
27- <FAIcon :icon =" faGear " v-tippy = " ' Configuration' " />
27+ <FAIcon :icon =" faGear " title=" Configuration" />
2828 <span class =" navbar-label" >Configuration</span >
2929 <exclamation-mark :type =" WarningLevel.Danger" v-if =" displayDanger" />
3030 <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);
1212
1313<template >
1414 <RouterLink :to =" routeLinks .customChecks " >
15- <FAIcon :icon =" faCheck " v-tippy = " ' Custom Checks' " />
15+ <FAIcon :icon =" faCheck " title=" Custom Checks" />
1616 <span class =" navbar-label" >Custom Checks</span >
1717 <span v-if =" failingCount > 0" class =" badge badge-important" >{{ failingCount }}</span >
1818 </RouterLink >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import FAIcon from "@/components/FAIcon.vue";
77
88<template >
99 <RouterLink :to =" routeLinks .dashboard " >
10- <FAIcon :icon =" faGauge " v-tippy = " ' Dashboard' " />
10+ <FAIcon :icon =" faGauge " title=" Dashboard" />
1111 <span class =" navbar-label" >Dashboard</span >
1212 </RouterLink >
1313</template >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { faListUl } from "@fortawesome/free-solid-svg-icons";
77
88<template >
99 <RouterLink :to =" routeLinks .events " >
10- <FAIcon :icon =" faListUl " v-tippy = " ' Events' " />
10+ <FAIcon :icon =" faListUl " title=" Events" />
1111 <span class =" navbar-label" >Events</span >
1212 </RouterLink >
1313</template >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { faEnvelope } from "@fortawesome/free-solid-svg-icons";
88
99<template >
1010 <RouterLink :to =" routeLinks .failedMessage .root " >
11- <FAIcon :icon =" faEnvelope " v-tippy = " ' Failed Messages' " />
11+ <FAIcon :icon =" faEnvelope " title=" Failed Messages" />
1212 <span class =" navbar-label" >Failed Messages</span >
1313 <span v-if =" stats.number_of_failed_messages > 0" class =" badge badge-important" >{{ stats.number_of_failed_messages }}</span >
1414 </RouterLink >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const { failedHeartbeatsCount } = storeToRefs(useHeartbeatsStore());
1111
1212<template >
1313 <RouterLink aria-label="Heartbeats Menu Item" :to =" routeLinks .heartbeats .root " >
14- <FAIcon :icon =" faHeartPulse " v-tippy = " ' Heartbeats' " />
14+ <FAIcon :icon =" faHeartPulse " title=" Heartbeats" />
1515 <span class =" navbar-label" >Heartbeats</span >
1616 <span v-if =" failedHeartbeatsCount > 0" class =" badge badge-important" aria-label =" Alert Count" >{{ failedHeartbeatsCount }}</span >
1717 </RouterLink >
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { faChartLine } from "@fortawesome/free-solid-svg-icons";
88
99<template >
1010 <RouterLink :to =" routeLinks .monitoring .root " >
11- <FAIcon :icon =" faChartLine " v-tippy = " ' Monitoring' " />
11+ <FAIcon :icon =" faChartLine " title=" Monitoring" />
1212 <span class =" navbar-label" >Monitoring</span >
1313 <span v-if =" stats.number_of_disconnected_endpoints > 0" class =" badge badge-important" >{{ stats.number_of_disconnected_endpoints }}</span >
1414 </RouterLink >
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { faFileLines } from "@fortawesome/free-solid-svg-icons";
77
88<template >
99 <RouterLink :to =" routeLinks .throughput .root " >
10- <FAIcon :icon =" faFileLines " v-tippy = " ' Usage' " />
10+ <FAIcon :icon =" faFileLines " title=" Usage" />
1111 <span class =" navbar-label" >Usage</span >
1212 </RouterLink >
1313</template >
You can’t perform that action at this time.
0 commit comments