diff --git a/frontend/vue/components/Stations/Podcasts/Common/Artwork.vue b/frontend/vue/components/Stations/Podcasts/Common/Artwork.vue index ee72649c7..bdd584c33 100644 --- a/frontend/vue/components/Stations/Podcasts/Common/Artwork.vue +++ b/frontend/vue/components/Stations/Podcasts/Common/Artwork.vue @@ -44,7 +44,7 @@ const props = defineProps({ const emit = defineEmits(['update:modelValue']); -const artworkSrc = toRef(props, 'artworkSrc'); +const artworkSrc = ref(props.artworkSrc); const localSrc = ref(null); const src = computed(() => { diff --git a/frontend/vue/components/Stations/Podcasts/EpisodeForm/Media.vue b/frontend/vue/components/Stations/Podcasts/EpisodeForm/Media.vue index bd28c1b76..1ba49aca2 100644 --- a/frontend/vue/components/Stations/Podcasts/EpisodeForm/Media.vue +++ b/frontend/vue/components/Stations/Podcasts/EpisodeForm/Media.vue @@ -42,7 +42,7 @@