Renamed fields in Vue page
This commit is contained in:
parent
6b0550f14b
commit
9b42b486ae
|
@ -6,18 +6,18 @@
|
||||||
<ul>
|
<ul>
|
||||||
<ListItem v-for="sub in subscriptions"
|
<ListItem v-for="sub in subscriptions"
|
||||||
:key="sub.url"
|
:key="sub.url"
|
||||||
:title="sub.podcast?.title ?? sub.url"
|
:title="sub.podcastData?.title ?? sub.url"
|
||||||
:details="formatSubscriptionDetails(sub)">
|
:details="formatSubscriptionDetails(sub)">
|
||||||
<template #icon>
|
<template #icon>
|
||||||
<Avatar :size="44"
|
<Avatar :size="44"
|
||||||
:url="sub.podcast?.image"
|
:url="sub.podcastData?.image"
|
||||||
:display-name="sub.podcast?.author" />
|
:display-name="sub.podcastData?.author" />
|
||||||
</template>
|
</template>
|
||||||
<template #subtitle>
|
<template #subtitle>
|
||||||
{{ sub.podcast?.description }}
|
{{ sub.podcastData?.description }}
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<ActionLink :href="sub.podcast?.link"
|
<ActionLink :href="sub.podcastData?.link"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
icon="icon-external">
|
icon="icon-external">
|
||||||
Podcast's homepage
|
Podcast's homepage
|
||||||
|
|
Loading…
Reference in New Issue