fix: 💄 use NcActionButton instead of NcButton
This commit is contained in:
parent
c97e927a15
commit
a50947ffaf
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user