From ab0167a62f5804b60389a856d9cfd1acc17d2858 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Fri, 13 Mar 2020 13:11:08 +0100 Subject: [PATCH] See #170: fixed ellipsis issue in channel entry card --- front/src/components/audio/ChannelEntryCard.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/front/src/components/audio/ChannelEntryCard.vue b/front/src/components/audio/ChannelEntryCard.vue index 6d1e688bc6..3ceb89bfb3 100644 --- a/front/src/components/audio/ChannelEntryCard.vue +++ b/front/src/components/audio/ChannelEntryCard.vue @@ -2,10 +2,10 @@ <div class="channel-entry-card"> <img @click="$router.push({name: 'library.tracks.detail', params: {id: entry.id}})" class="channel-image image" v-if="cover && cover.original" v-lazy="$store.getters['instance/absoluteUrl'](cover.square_crop)"> <img @click="$router.push({name: 'library.tracks.detail', params: {id: entry.id}})" class="channel-image image" v-else src="../../assets/audio/default-cover.png"> - <div class="content"> + <div class="ellipsis content"> <strong> - <router-link class="discrete ellipsis link" :title="entry.title" :to="{name: 'library.tracks.detail', params: {id: entry.id}}"> - {{ entry.title|truncate(30) }} + <router-link class="discrete link" :title="entry.title" :to="{name: 'library.tracks.detail', params: {id: entry.id}}"> + {{ entry.title }} </router-link> </strong> <div class="description"> -- GitLab