diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 14:16:21 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 14:16:21 +0900 |
| commit | bb53db905f8765c0e0faa0fa69e71ba5bcee799e (patch) | |
| tree | 9821e213d2b62c2a61e1ad26933386cbe439a576 /src | |
| parent | Merge pull request #1704 from syuilo/l10n_master (diff) | |
| download | sharkey-bb53db905f8765c0e0faa0fa69e71ba5bcee799e.tar.gz sharkey-bb53db905f8765c0e0faa0fa69e71ba5bcee799e.tar.bz2 sharkey-bb53db905f8765c0e0faa0fa69e71ba5bcee799e.zip | |
:v:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/widgets/hashtags.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client/app/common/views/widgets/hashtags.vue b/src/client/app/common/views/widgets/hashtags.vue index 809f87f6f2..8c9ca5d419 100644 --- a/src/client/app/common/views/widgets/hashtags.vue +++ b/src/client/app/common/views/widgets/hashtags.vue @@ -8,7 +8,7 @@ <div v-else> <div v-for="stat in stats" :key="stat.tag"> <div class="tag"> - <router-link :to="`/tags/${ stat.tag }`">#{{ stat.tag }}</router-link> + <router-link :to="`/tags/${ stat.tag }`" :title="stat.tag">#{{ stat.tag }}</router-link> <p>{{ '%i18n:@count%'.replace('{}', stat.usersCount) }}</p> </div> <x-chart class="chart" :src="stat.chart"/> @@ -84,10 +84,16 @@ root(isDark) > .tag flex 1 + overflow hidden font-size 14px color isDark ? #9baec8 : #65727b > a + display block + width 100% + white-space nowrap + overflow hidden + text-overflow ellipsis color inherit > p |