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">
|
<div class="title text-overflow-elipsis" :title="item.attributes.name">
|
||||||
{{ item.attributes.name }}
|
{{ item.attributes.name }}
|
||||||
</div>
|
</div>
|
||||||
<div class="subtitle text-overflow-elipsis" :title="item.attributes.artistName"
|
<div class="subtitle text-overflow-elipsis"
|
||||||
style="-webkit-box-orient: horizontal;">
|
style="-webkit-box-orient: horizontal;">
|
||||||
<template v-if="item.attributes.artistName">
|
<template v-if="item.attributes.artistName">
|
||||||
<div class="artist item-navigate text-overflow-elipsis"
|
<div class="artist item-navigate text-overflow-elipsis"
|
||||||
|
:title="item.attributes.artistName"
|
||||||
@click="app.searchAndNavigate(item,'artist')">
|
@click="app.searchAndNavigate(item,'artist')">
|
||||||
{{ item.attributes.artistName }}
|
{{ item.attributes.artistName }}
|
||||||
</div>
|
</div>
|
||||||
<template v-if="item.attributes.albumName"> — </template>
|
<template v-if="item.attributes.albumName"> — </template>
|
||||||
<template v-if="item.attributes.albumName">
|
<template v-if="item.attributes.albumName">
|
||||||
<div class="artist item-navigate text-overflow-elipsis"
|
<div class="artist item-navigate text-overflow-elipsis"
|
||||||
|
:title="item.attributes.albumName"
|
||||||
@click="app.searchAndNavigate(item,'album')">
|
@click="app.searchAndNavigate(item,'album')">
|
||||||
{{ item.attributes.albumName }}
|
{{ item.attributes.albumName }}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue