summaryrefslogtreecommitdiff
path: root/src/components/Global/TableDateFilter.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/TableDateFilter.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/TableDateFilter.vue')
-rw-r--r--src/components/Global/TableDateFilter.vue10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/components/Global/TableDateFilter.vue b/src/components/Global/TableDateFilter.vue
index 538f0e05..1313eddd 100644
--- a/src/components/Global/TableDateFilter.vue
+++ b/src/components/Global/TableDateFilter.vue
@@ -39,7 +39,10 @@
aria-controls="input-from-date"
>
<template v-slot:button-content>
- <icon-calendar />
+ <icon-calendar
+ :title="$t('global.calendar.openDatePicker')"
+ aria-hidden="true"
+ />
<span class="sr-only">{{
$t('global.calendar.openDatePicker')
}}</span>
@@ -86,7 +89,10 @@
aria-controls="input-to-date"
>
<template v-slot:button-content>
- <icon-calendar />
+ <icon-calendar
+ :title="$t('global.calendar.openDatePicker')"
+ aria-hidden="true"
+ />
<span class="sr-only">{{
$t('global.calendar.openDatePicker')
}}</span>