feat: add channel name tooltip to ChannelEntry component
This commit is contained in:
parent
80df3dd13d
commit
4b1db5961a
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-if="isCurrentChannel" class="channel-list-link-container rounded-corners current-channel" tabindex="0">
|
<div v-if="isCurrentChannel" class="channel-list-link-container rounded-corners current-channel" tabindex="0" :title="props.name">
|
||||||
<NuxtLink class="channel-list-link" :href="props.href" tabindex="-1">
|
<NuxtLink class="channel-list-link" :href="props.href" tabindex="-1">
|
||||||
# {{ props.name }}
|
# {{ props.name }}
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="channel-list-link-container rounded-corners" tabindex="0">
|
<div v-else class="channel-list-link-container rounded-corners" tabindex="0" :title="props.name">
|
||||||
<NuxtLink class="channel-list-link" :href="props.href" tabindex="-1">
|
<NuxtLink class="channel-list-link" :href="props.href" tabindex="-1">
|
||||||
# {{ props.name }}
|
# {{ props.name }}
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue