Fix hover titles for album names
This commit is contained in:
parent
6a310997cf
commit
152644cad3
1 changed files with 3 additions and 1 deletions
|
@ -62,16 +62,18 @@
|
|||
<div class="title text-overflow-elipsis" :title="item.attributes.name">
|
||||
{{ item.attributes.name }}
|
||||
</div>
|
||||
<div class="subtitle text-overflow-elipsis" :title="item.attributes.artistName"
|
||||
<div class="subtitle text-overflow-elipsis"
|
||||
style="-webkit-box-orient: horizontal;">
|
||||
<template v-if="item.attributes.artistName">
|
||||
<div class="artist item-navigate text-overflow-elipsis"
|
||||
:title="item.attributes.artistName"
|
||||
@click="app.searchAndNavigate(item,'artist')">
|
||||
{{ item.attributes.artistName }}
|
||||
</div>
|
||||
<template v-if="item.attributes.albumName"> — </template>
|
||||
<template v-if="item.attributes.albumName">
|
||||
<div class="artist item-navigate text-overflow-elipsis"
|
||||
:title="item.attributes.albumName"
|
||||
@click="app.searchAndNavigate(item,'album')">
|
||||
{{ item.attributes.albumName }}
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue