We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51f5b8f commit 7d18f3aCopy full SHA for 7d18f3a
src/components/overview/Overview.vue
@@ -16,7 +16,10 @@
16
<div v-else-if="isValidFilter" class="overview">
17
<div v-for="columnProps in columnPropsList" class="dashboard-column" :key="columnProps.title">
18
<div class="dashboard-column__header">
19
- <h3 class="dashboard-column__header-title">{{ t('deck', columnProps.title) }}</h3>
+ <h3 class="dashboard-column__header-title"
20
+ :title="columnProps.title"
21
+ :aria-label="columnProps.title"
22
+ >{{ t('deck', columnProps.title) }}</h3>
23
</div>
24
<div class="dashboard-column__list">
25
<template v-if="columnProps.sort === false">
0 commit comments