mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-06 08:39:57 +02:00
Fix #637: greyed tracks in radio builder and detail page
This commit is contained in:
parent
657311c316
commit
b58f3e1440
5 changed files with 18 additions and 8 deletions
|
@ -77,7 +77,7 @@
|
|||
</builder-filter>
|
||||
</tbody>
|
||||
</table>
|
||||
<template v-if="checkResult">
|
||||
<template v-if="checkResult && checkResult.candidates && checkResult.candidates.count">
|
||||
<h3
|
||||
class="ui header"
|
||||
v-translate="{count: checkResult.candidates.count}"
|
||||
|
@ -85,7 +85,7 @@
|
|||
translate-plural="%{ count } tracks matching combined filters">
|
||||
%{ count } track matching combined filters
|
||||
</h3>
|
||||
<track-table v-if="checkResult.candidates.sample" :tracks="checkResult.candidates.sample"></track-table>
|
||||
<track-table v-if="checkResult.candidates.sample" :tracks="checkResult.candidates.sample" :playable="true"></track-table>
|
||||
</template>
|
||||
</section>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue