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