Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Frontend/src/components/FAIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ withDefaults(
</script>

<template>
<FontAwesomeIcon :icon="icon" :size="size" :title="title" />
<FontAwesomeIcon :icon="icon" :size="size" v-tippy="title" />
</template>
2 changes: 1 addition & 1 deletion src/Frontend/src/components/audit/AuditMenuItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { faEnvelopeOpen } from "@fortawesome/free-solid-svg-icons";

<template>
<RouterLink :to="routeLinks.messages.root">
<FAIcon :icon="faEnvelopeOpen" v-tippy="'All Messages'" />
<FAIcon :icon="faEnvelopeOpen" title="All Messages" />
<span class="navbar-label">All Messages</span>
</RouterLink>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const displayDanger = computed(() => {

<template>
<RouterLink :to="routeLinks.configuration.root" exact>
<FAIcon :icon="faGear" v-tippy="'Configuration'" />
<FAIcon :icon="faGear" title="Configuration" />
<span class="navbar-label">Configuration</span>
<exclamation-mark :type="WarningLevel.Danger" v-if="displayDanger" />
<exclamation-mark :type="WarningLevel.Warning" v-else-if="displayWarn" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { failingCount } = storeToRefs(store);

<template>
<RouterLink :to="routeLinks.customChecks">
<FAIcon :icon="faCheck" v-tippy="'Custom Checks'" />
<FAIcon :icon="faCheck" title="Custom Checks" />
<span class="navbar-label">Custom Checks</span>
<span v-if="failingCount > 0" class="badge badge-important">{{ failingCount }}</span>
</RouterLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import FAIcon from "@/components/FAIcon.vue";

<template>
<RouterLink :to="routeLinks.dashboard">
<FAIcon :icon="faGauge" v-tippy="'Dashboard'" />
<FAIcon :icon="faGauge" title="Dashboard" />
<span class="navbar-label">Dashboard</span>
</RouterLink>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/Frontend/src/components/events/EventsMenuItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { faListUl } from "@fortawesome/free-solid-svg-icons";

<template>
<RouterLink :to="routeLinks.events">
<FAIcon :icon="faListUl" v-tippy="'Events'" />
<FAIcon :icon="faListUl" title="Events" />
<span class="navbar-label">Events</span>
</RouterLink>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { faEnvelope } from "@fortawesome/free-solid-svg-icons";

<template>
<RouterLink :to="routeLinks.failedMessage.root">
<FAIcon :icon="faEnvelope" v-tippy="'Failed Messages'" />
<FAIcon :icon="faEnvelope" title="Failed Messages" />
<span class="navbar-label">Failed Messages</span>
<span v-if="stats.number_of_failed_messages > 0" class="badge badge-important">{{ stats.number_of_failed_messages }}</span>
</RouterLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { failedHeartbeatsCount } = storeToRefs(useHeartbeatsStore());

<template>
<RouterLink aria-label="Heartbeats Menu Item" :to="routeLinks.heartbeats.root">
<FAIcon :icon="faHeartPulse" v-tippy="'Heartbeats'" />
<FAIcon :icon="faHeartPulse" title="Heartbeats" />
<span class="navbar-label">Heartbeats</span>
<span v-if="failedHeartbeatsCount > 0" class="badge badge-important" aria-label="Alert Count">{{ failedHeartbeatsCount }}</span>
</RouterLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { faChartLine } from "@fortawesome/free-solid-svg-icons";

<template>
<RouterLink :to="routeLinks.monitoring.root">
<FAIcon :icon="faChartLine" v-tippy="'Monitoring'" />
<FAIcon :icon="faChartLine" title="Monitoring" />
<span class="navbar-label">Monitoring</span>
<span v-if="stats.number_of_disconnected_endpoints > 0" class="badge badge-important">{{ stats.number_of_disconnected_endpoints }}</span>
</RouterLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { faFileLines } from "@fortawesome/free-solid-svg-icons";

<template>
<RouterLink :to="routeLinks.throughput.root">
<FAIcon :icon="faFileLines" v-tippy="'Usage'" />
<FAIcon :icon="faFileLines" title="Usage" />
<span class="navbar-label">Usage</span>
</RouterLink>
</template>
Expand Down
Loading