@@ -81,7 +81,7 @@ function endpointHealth(endpoint: LogicalEndpoint) {
8181 </tippy >
8282 </div >
8383 </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" >
8585 <tippy :delay =" [300, 0]" >
8686 <template #content >
8787 <template v-if =" endpoint .track_instances " >
@@ -96,15 +96,15 @@ function endpointHealth(endpoint: LogicalEndpoint) {
9696 </template >
9797 <i v-if =" endpoint.track_instances" class =" fa fa-server" :class =" endpointHealth(endpoint)" ></i >
9898 <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 >
100100 </tippy >
101101 </div >
102102 <div v-if =" columns.includes(ColumnNames.LastHeartbeat)" role =" cell" aria-label =" last-heartbeat" class =" col-2 last-heartbeat" >
103103 <LastHeartbeat :date =" endpoint.heartbeat_information?.last_report_at" tooltip-target =" endpoint" />
104104 </div >
105105 <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 >
108108 </tippy >
109109 </div >
110110 <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) {
117117 <tippy content =" All instances have alerts muted" :delay =" [300, 0]" >
118118 <i class =" fa fa-bell-slash text-danger" />
119119 </tippy >
120- <span class =" instances-muted" >{{ endpoint.muted_count }}</span >
120+ <span class =" instances-muted" aria-label = " Muted instance count " >{{ endpoint.muted_count }}</span >
121121 </template >
122122 <template v-else-if =" endpoint .muted_count > 0 " >
123123 <tippy :content =" `${endpoint.muted_count} instance(s) have alerts muted`" :delay =" [300, 0]" >
0 commit comments