mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Allow channel name to overflow (#492)
* Allow channel name to overflow * Add missing title to VideoItem uploader name router-link
This commit is contained in:
parent
930395f74e
commit
91c832f53f
1 changed files with 2 additions and 4 deletions
|
@ -40,16 +40,14 @@
|
|||
<img v-if="video.uploaderAvatar" :src="video.uploaderAvatar" loading="lazy" :alt="video.uploaderName" class="uk-border-circle" style="margin-right: 0.5rem; margin-top:0.5rem; width: 32px; height: 32px;" />
|
||||
</router-link>
|
||||
|
||||
<div>
|
||||
<router-link class="uk-link-muted" :to="video.uploaderUrl">
|
||||
<div style="width: calc(100% - 32px - 8px);">
|
||||
<router-link class="uk-link-muted uk-overflow-hidden" :to="video.uploaderUrl" :title="video.uploaderName" style="display:block; width: 90%">
|
||||
{{ video.uploaderName }} <font-awesome-icon
|
||||
v-if="video.uploaderVerified"
|
||||
icon="check"
|
||||
></font-awesome-icon>
|
||||
</router-link>
|
||||
|
||||
<br />
|
||||
|
||||
<b v-if="video.views >= 0 || video.uploadedDate" class="uk-text-small">
|
||||
<span v-if="video.views >= 0">
|
||||
<font-awesome-icon icon="eye"></font-awesome-icon>
|
||||
|
|
Loading…
Reference in a new issue