use ternary op to send copyright text to songlist component

+ return a zeros if seconds is undefined in formatSeconds()
This commit is contained in:
geoffrey45
2022-08-04 14:56:46 +03:00
parent 5f14fbf86d
commit 13f38c5a66
5 changed files with 9 additions and 11 deletions
+1 -7
View File
@@ -6,13 +6,7 @@
:tracks="disc"
:on_album_page="true"
:disc="key"
:copyright="
() => {
if (isLastDisc(key)) {
return copyright;
}
}
"
:copyright="isLastDisc(key) ? () => copyright : null"
/>
</div>
</div>