Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/audit/AuditMenuItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { faEnvelopeOpen } from "@fortawesome/free-solid-svg-icons";
</script>

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

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

<template>
<RouterLink :to="routeLinks.customChecks">
<RouterLink :to="routeLinks.customChecks" title="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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import FAIcon from "@/components/FAIcon.vue";
</script>

<template>
<RouterLink :to="routeLinks.dashboard">
<RouterLink :to="routeLinks.dashboard" title="Dashboard">
<FAIcon :icon="faGauge" title="Dashboard" />
<span class="navbar-label">Dashboard</span>
</RouterLink>
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 @@ -6,7 +6,7 @@ import { faListUl } from "@fortawesome/free-solid-svg-icons";
</script>

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

<template>
<RouterLink :to="routeLinks.failedMessage.root">
<RouterLink :to="routeLinks.failedMessage.root" title="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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { failedHeartbeatsCount } = storeToRefs(useHeartbeatsStore());
</script>

<template>
<RouterLink aria-label="Heartbeats Menu Item" :to="routeLinks.heartbeats.root">
<RouterLink aria-label="Heartbeats Menu Item" :to="routeLinks.heartbeats.root" title="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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { faChartLine } from "@fortawesome/free-solid-svg-icons";
</script>

<template>
<RouterLink :to="routeLinks.monitoring.root">
<RouterLink :to="routeLinks.monitoring.root" title="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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { faFileLines } from "@fortawesome/free-solid-svg-icons";
</script>

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