fix: 🚧 wip
This commit is contained in:
parent
7b4c39499a
commit
5a58b253d2
@ -1,8 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<NcAppNavigationItem
|
<NcAppNavigationItem
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:name="metric.data?.title || url"
|
:name="metric.data?.title || metric.url"
|
||||||
:to="toFeedUrl(url)">
|
:to="toFeedUrl(metric.url)">
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<NcActionButton
|
<NcActionButton
|
||||||
:aria-label="t('repod', 'Favorite')"
|
:aria-label="t('repod', 'Favorite')"
|
||||||
@ -31,7 +31,6 @@
|
|||||||
:is-no-user="true"
|
:is-no-user="true"
|
||||||
:url="metric.data?.imageUrl" />
|
:url="metric.data?.imageUrl" />
|
||||||
<StarIcon v-if="metric.isFavorite" class="star" :size="20" />
|
<StarIcon v-if="metric.isFavorite" class="star" :size="20" />
|
||||||
<AlertIcon v-if="failed" />
|
|
||||||
</template>
|
</template>
|
||||||
</NcAppNavigationItem>
|
</NcAppNavigationItem>
|
||||||
</template>
|
</template>
|
||||||
@ -39,7 +38,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { NcActionButton, NcAppNavigationItem, NcAvatar } from '@nextcloud/vue'
|
import { NcActionButton, NcAppNavigationItem, NcAvatar } from '@nextcloud/vue'
|
||||||
import { mapActions, mapState } from 'pinia'
|
import { mapActions, mapState } from 'pinia'
|
||||||
import AlertIcon from 'vue-material-design-icons/Alert.vue'
|
|
||||||
import DeleteIcon from 'vue-material-design-icons/Delete.vue'
|
import DeleteIcon from 'vue-material-design-icons/Delete.vue'
|
||||||
import type { PodcastMetricsInterface } from '../../utils/types.ts'
|
import type { PodcastMetricsInterface } from '../../utils/types.ts'
|
||||||
import StarIcon from 'vue-material-design-icons/Star.vue'
|
import StarIcon from 'vue-material-design-icons/Star.vue'
|
||||||
@ -55,7 +53,6 @@ import { useSubscriptions } from '../../store/subscriptions.ts'
|
|||||||
export default {
|
export default {
|
||||||
name: 'Subscription',
|
name: 'Subscription',
|
||||||
components: {
|
components: {
|
||||||
AlertIcon,
|
|
||||||
DeleteIcon,
|
DeleteIcon,
|
||||||
NcActionButton,
|
NcActionButton,
|
||||||
NcAppNavigationItem,
|
NcAppNavigationItem,
|
||||||
|
Loading…
Reference in New Issue
Block a user