Skip to content

Commit

Permalink
feat: add title tooltip on website and mail #172
Browse files Browse the repository at this point in the history
  • Loading branch information
wazolab committed Mar 5, 2024
1 parent 4231d31 commit c89e3dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Fields/Field.vue
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export default defineNuxtComponent({
v-else-if="isWebsite"
:key="`website_${item}`"
>
<ExternalLink :href="item">
<ExternalLink :title="item" :href="item">
{{ context !== 'label_list' ? item : '' }}
<br>
</ExternalLink>
Expand All @@ -241,7 +241,7 @@ export default defineNuxtComponent({
v-else-if="field.field === 'email'"
:key="`email_${item}`"
>
<ExternalLink :href="`mailto:${item}`" icon="envelope">
<ExternalLink :title="item" :href="`mailto:${item}`" icon="envelope">
{{ context !== 'label_list' ? item : '' }}
<br>
</ExternalLink>
Expand Down

0 comments on commit c89e3dc

Please sign in to comment.