fix(front): old playbutton in playlist card
This commit is contained in:
parent
70e4f16592
commit
e3eb7c0be6
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import Card from '~/components/ui/Card.vue'
|
import Card from '~/components/ui/Card.vue'
|
||||||
import PlayButton from '~/components/ui/button/Play.vue'
|
import PlayButton from '~/components/audio/PlayButton.vue'
|
||||||
import OptionsButton from '~/components/ui/button/Options.vue'
|
import OptionsButton from '~/components/ui/button/Options.vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import { useI18n } from 'vue-i18n'
|
import { useI18n } from 'vue-i18n'
|
||||||
|
@ -51,7 +51,11 @@ if (import.meta.env.PROD) {
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<PlayButton @play="play(playlist)" />
|
<PlayButton
|
||||||
|
:icon-only="true"
|
||||||
|
:is-playable="playlist.is_playable"
|
||||||
|
:playlist="playlist"
|
||||||
|
/>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
class="funkwhale link"
|
class="funkwhale link"
|
||||||
|
|
Loading…
Reference in New Issue