Skip to content

Commit 7d18f3a

Browse files
ludijluka-nextcloud
authored andcommitted
feature(3331): improve accessibility attributes for overview column titles
Signed-off-by: Luutzen Dijkstra <[email protected]>
1 parent 51f5b8f commit 7d18f3a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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)