Skip to content

Commit e408d55

Browse files
committed
feature(3331): improve accessibility attributes for overview column titles
Signed-off-by: Luutzen Dijkstra <luutzen.dijkstra@gmail.com>
1 parent cc42bfc commit e408d55

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/components/overview/Overview.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
<div v-else-if="isValidFilter" class="overview">
1717
<div v-for="columnProps in columnPropsList" class="dashboard-column" :key="columnProps.title">
1818
<div class="dashboard-column__header">
19-
<h3 class="dashboard-column__header-title">{{ t('deck', columnProps.title) }}</h3>
19+
<h3 class="dashboard-column__header-title"
20+
:title="columnProps.title"
21+
:aria-label="columnProps.title"
22+
>{{ t('deck', columnProps.title) }}</h3>
2023
</div>
2124
<div class="dashboard-column__list">
2225
<template v-if="columnProps.sort === false">

0 commit comments

Comments
 (0)