summaryrefslogtreecommitdiff
path: root/src/components/Global/InputPasswordToggle.vue
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2020-08-27 01:23:45 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-09-09 19:22:01 +0300
commitd2ac76d7922fff243174ee50ab05020a5064aa6e (patch)
tree3e9b64191eb6c12cfa38dacbdef7f74638b84d00 /src/components/Global/InputPasswordToggle.vue
parent4afe2f762cf7f567579bcd3b03c9023c79b535fc (diff)
downloadwebui-vue-d2ac76d7922fff243174ee50ab05020a5064aa6e.tar.xz
Add title attribute to all icon only buttons
- Title attribute allows action text to be displayed on hover - Carets in hardware status table will be addressed in a separate commit as part of Hardware status accessibility updates Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: I58a85b6d244d1125f0b43c22d0bb456a36815097
Diffstat (limited to 'src/components/Global/InputPasswordToggle.vue')
-rw-r--r--src/components/Global/InputPasswordToggle.vue12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/components/Global/InputPasswordToggle.vue b/src/components/Global/InputPasswordToggle.vue
index 519a808f..6ac98639 100644
--- a/src/components/Global/InputPasswordToggle.vue
+++ b/src/components/Global/InputPasswordToggle.vue
@@ -7,8 +7,16 @@
:class="{ isVisible: isVisible }"
@click="toggleVisibility"
>
- <icon-view-off v-if="isVisible" aria-hidden="true" />
- <icon-view v-else aria-hidden="true" />
+ <icon-view-off
+ v-if="isVisible"
+ aria-hidden="true"
+ :title="$t('global.ariaLabel.hidePassword')"
+ />
+ <icon-view
+ v-else
+ aria-hidden="true"
+ :title="$t('global.ariaLabel.showPassword')"
+ />
</b-button>
</div>
</template>