Skip to content

Commit

Permalink
Replaced aria-description with aria-label
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostyCoolSlug committed May 1, 2023
1 parent 2163a5c commit ae8d434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/sections/routing/Cell.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<td>
<div @click="clicked" role="checkbox" :aria-valuenow="enabled" :aria-description="`Routing from ${input} to ${output}`" :aria-checked="enabled" tabindex="0">
<div @click="clicked" role="checkbox" :aria-valuenow="enabled" :aria-label="`Routing from ${input} to ${output}`" :aria-checked="enabled" tabindex="0">
<font-awesome-icon v-if="enabled" icon="fa-solid fa-circle-check" />
</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion src/components/slider/SubmixSlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:colour="getColour('B')" :reported-value="getTextValue('B')"/>
</div>

<div class="link" style="" @click="toggleSubmixLinked" role="checkbox" aria-description="Link {{title}} Channels"
<div class="link" style="" @click="toggleSubmixLinked" role="checkbox" :aria-label="`Link ${title} Channels`"
:aria-checked="submixLinked" tabindex="0" :style="{ color: getLabelColour() }">
<div v-if="dimmed">
<img v-if="submixLinked" :src="`${publicPath}images/submix/linked-dimmed.png`" style="height: 20px">
Expand Down

0 comments on commit ae8d434

Please sign in to comment.