@@ -81,7 +81,7 @@ function endpointHealth(endpoint: LogicalEndpoint) {
81
81
</tippy >
82
82
</div >
83
83
</div >
84
- <div v-if =" columns.includes(ColumnNames.InstancesTotal) || columns.includes(ColumnNames.InstancesDown)" role =" cell" aria-label = " instance-count " class =" col-2" >
84
+ <div v-if =" columns.includes(ColumnNames.InstancesTotal) || columns.includes(ColumnNames.InstancesDown)" role =" cell" class =" col-2" >
85
85
<tippy :delay =" [300, 0]" >
86
86
<template #content >
87
87
<template v-if =" endpoint .track_instances " >
@@ -96,15 +96,15 @@ function endpointHealth(endpoint: LogicalEndpoint) {
96
96
</template >
97
97
<i v-if =" endpoint.track_instances" class =" fa fa-server" :class =" endpointHealth(endpoint)" ></i >
98
98
<i v-else class =" fa fa-sellsy" :class =" endpointHealth(endpoint)" ></i >  ;
99
- <span class =" endpoint-count" >{{ store.instanceDisplayText(endpoint) }}</span >
99
+ <span class =" endpoint-count" aria-label = " instance-count " >{{ store.instanceDisplayText(endpoint) }}</span >
100
100
</tippy >
101
101
</div >
102
102
<div v-if =" columns.includes(ColumnNames.LastHeartbeat)" role =" cell" aria-label =" last-heartbeat" class =" col-2 last-heartbeat" >
103
103
<LastHeartbeat :date =" endpoint.heartbeat_information?.last_report_at" tooltip-target =" endpoint" />
104
104
</div >
105
105
<div v-if =" columns.includes(ColumnNames.Tracked)" role =" cell" aria-label =" tracked-instances" class =" col-1 centre" >
106
- <tippy v-if =" endpoint.track_instances" content =" Instances are being tracked" :delay =" [1000, 0]" >
107
- <i class =" fa fa-check text-success" ></i >
106
+ <tippy v-if =" endpoint.track_instances" id = " tracked-instance-desc " content =" Instances are being tracked" :delay =" [1000, 0]" >
107
+ <i class =" fa fa-check text-success" aria-title = " Instances are being tracked " ></i >
108
108
</tippy >
109
109
</div >
110
110
<div v-if =" columns.includes(ColumnNames.TrackToggle)" role =" cell" aria-label =" tracked-instances" class =" col-2 centre" >
@@ -117,7 +117,7 @@ function endpointHealth(endpoint: LogicalEndpoint) {
117
117
<tippy content =" All instances have alerts muted" :delay =" [300, 0]" >
118
118
<i class =" fa fa-bell-slash text-danger" />
119
119
</tippy >
120
- <span class =" instances-muted" >{{ endpoint.muted_count }}</span >
120
+ <span class =" instances-muted" aria-label = " Muted instance count " >{{ endpoint.muted_count }}</span >
121
121
</template >
122
122
<template v-else-if =" endpoint .muted_count > 0 " >
123
123
<tippy :content =" `${endpoint.muted_count} instance(s) have alerts muted`" :delay =" [300, 0]" >
0 commit comments