mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Merge pull request #2751 from Bnyro/master
fix: wrap video tags into multiple lines
This commit is contained in:
commit
5db65b118a
1 changed files with 2 additions and 2 deletions
|
@ -169,11 +169,11 @@
|
|||
<div v-text="`${$t('video.license')}: ${video.license}`" />
|
||||
<div class="capitalize" v-text="`${$t('video.visibility')}: ${video.visibility}`" />
|
||||
|
||||
<div v-if="video.tags" class="flex gap-2 mt-2">
|
||||
<div v-if="video.tags" class="flex flex-wrap gap-2 mt-2">
|
||||
<router-link
|
||||
v-for="tag in video.tags"
|
||||
:key="tag"
|
||||
class="rounded-s px-2 py-1 btn"
|
||||
class="rounded-s px-2 py-1 btn line-clamp-1"
|
||||
:to="`/results?search_query=${encodeURIComponent(tag)}`"
|
||||
>{{ tag }}</router-link
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue