Fixes #5966 -- Fix property mapping for Podcast episode media/art upload.

This commit is contained in:
Buster Neece 2022-12-26 12:14:53 -06:00
parent 33e4c45466
commit 08de0f96dc
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
2 changed files with 3 additions and 3 deletions

View File

@ -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(() => {

View File

@ -42,7 +42,7 @@
<script setup>
import FlowUpload from '~/components/Common/FlowUpload';
import {computed, toRef} from "vue";
import {computed, ref, toRef} from "vue";
import {useAxios} from "~/vendor/axios";
const props = defineProps({
@ -55,7 +55,7 @@ const props = defineProps({
const emit = defineEmits(['update:modelValue']);
const hasMedia = toRef(props, 'recordHasMedia');
const hasMedia = ref(props.recordHasMedia);
const targetUrl = computed(() => {
return (props.editMediaUrl)