implement reactive breakpoints

+ fix breaking queue page when there's no data
This commit is contained in:
geoffrey45
2022-09-10 20:15:20 +03:00
parent eb774eeaeb
commit 32b309b6ee
7 changed files with 74 additions and 25 deletions
+3 -3
View File
@@ -25,10 +25,10 @@
</router-link>
<div class="bottom">
<div class="title ellip t-center">{{ props.track?.title }}</div>
<div class="title ellip t-center">{{ props.track?.title || '♥ Hello ♥' }}</div>
<ArtistName
:artists="track?.artists || ['Artist']"
:albumartist="track?.albumartist"
:artists="track?.artists || []"
:albumartist="track?.albumartist || 'Play something'"
class="artists"
/>
</div>