fix: 💄 use NcActionButton instead of NcButton
All checks were successful
repod / xml (push) Successful in 15s
repod / php (push) Successful in 1m1s
repod / nodejs (push) Successful in 1m41s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-08-07 22:17:51 +02:00
parent c97e927a15
commit a50947ffaf

View File

@ -13,7 +13,7 @@
:title="episode.description"
@click="modalEpisode = episode">
<template #extra-actions>
<NcButton
<NcActionButton
v-if="!isCurrentEpisode(episode)"
:aria-label="t('repod', 'Play')"
:title="t('repod', 'Play')"
@ -21,8 +21,8 @@
<template #icon>
<PlayIcon :size="20" />
</template>
</NcButton>
<NcButton
</NcActionButton>
<NcActionButton
v-if="isCurrentEpisode(episode)"
:aria-label="t('repod', 'Stop')"
:title="t('repod', 'Stop')"
@ -30,7 +30,7 @@
<template #icon>
<StopIcon :size="20" />
</template>
</NcButton>
</NcActionButton>
</template>
<template #actions>
<NcActionButton
@ -113,7 +113,6 @@ import {
NcActionButton,
NcActionLink,
NcAvatar,
NcButton,
NcListItem,
NcModal,
NcProgressBar,
@ -146,7 +145,6 @@ export default {
NcActionButton,
NcActionLink,
NcAvatar,
NcButton,
NcListItem,
NcModal,
NcProgressBar,