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