Skip to content

Commit 79c90b4

Browse files
authored
Merge pull request #270 from c4dt/269
fix: add missing mouse-over text
2 parents 5479921 + f6fca8f commit 79c90b4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/InfoIcons.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
:class="iconClass"
66
:to="{ name: 'projects-id', params: { id: project.id }, query: { section: TAB_IDS.PAPERS } }"
77
aria-label="Papers"
8-
><FontAwesomeIcon :icon="faFile" class="fa-2x"
8+
><FontAwesomeIcon :icon="faFile" class="fa-2x" title="Papers"
99
/></NuxtLink>
10-
<FontAwesomeIcon v-else :icon="faFile" class="fa-2x text-[#e6e6e6]" />
10+
<FontAwesomeIcon v-else :icon="faFile" class="fa-2x text-[#e6e6e6]" title="Papers" />
1111
<NuxtLink
1212
v-if="articles"
1313
:class="iconClass"
1414
:to="{ name: 'projects-id', params: { id: project.id }, query: { section: TAB_IDS.ARTICLES } }"
1515
aria-label="Articles"
16-
><FontAwesomeIcon :icon="faNewspaper" class="fa-2x"
16+
><FontAwesomeIcon :icon="faNewspaper" class="fa-2x" title="Articles"
1717
/></NuxtLink>
18-
<FontAwesomeIcon v-else :icon="faNewspaper" class="fa-2x text-[#e6e6e6]" />
18+
<FontAwesomeIcon v-else :icon="faNewspaper" class="fa-2x text-[#e6e6e6]" title="Articles" />
1919
<div v-for="info in projectInformationIcons" :key="info" class="flex flex-nowrap space-x-4">
2020
<a v-if="info.url" :key="info.url" :href="info.url" :class="iconClass" :aria-label="info.label">
21-
<FontAwesomeIcon :icon="info.icon" class="fa-2x" />
21+
<FontAwesomeIcon :icon="info.icon" class="fa-2x" :title="info.label" />
2222
</a>
23-
<FontAwesomeIcon v-else :icon="info.icon" class="fa-2x text-[#e6e6e6]" />
23+
<FontAwesomeIcon v-else :icon="info.icon" class="fa-2x text-[#e6e6e6]" :title="info.label" />
2424
</div>
2525
</div>
2626
</template>

0 commit comments

Comments
 (0)