diff --git a/front/src/components/audio/ChannelForm.vue b/front/src/components/audio/ChannelForm.vue index 951c40d07..814bdf7bf 100644 --- a/front/src/components/audio/ChannelForm.vue +++ b/front/src/components/audio/ChannelForm.vue @@ -165,6 +165,7 @@ defineExpose({
() const step = ref(1) const { isOpen, to } = useModal('createChannel') -const loading = ref(false) +const isLoading = ref(false) const submittable = ref(false) const category = ref('podcast') @@ -83,7 +84,7 @@ const createForm = ref() ref="createForm" :object="null" :step="step" - @loading="loading = $event" + @loading="isLoading = $event" @submittable="submittable = $event" @category="category = $event" @errored="modalContent.scrollTop = 0" @@ -91,11 +92,12 @@ const createForm = ref() />