From 095a67c5ff8139fa2bea67e7715df6ce246c67e6 Mon Sep 17 00:00:00 2001 From: Brandon Galli <54678642+flutistar@users.noreply.github.com> Date: Thu, 15 Aug 2024 23:02:03 +0800 Subject: [PATCH] 22056 bugfix dropdown button (#2000) Added aria label to expand button to table row --- ppr-ui/src/components/tables/common/TableRow.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ppr-ui/src/components/tables/common/TableRow.vue b/ppr-ui/src/components/tables/common/TableRow.vue index fcd1a847b..22fef5ca1 100644 --- a/ppr-ui/src/components/tables/common/TableRow.vue +++ b/ppr-ui/src/components/tables/common/TableRow.vue @@ -25,6 +25,8 @@ color="primary" size="small" icon + :aria-label="isPpr ? 'Expand Amendments' : 'Expand History'" + role="button" @click="toggleExpand(item)" @mouseover="rollover = true" @mouseleave="rollover = false"