diff --git a/front/src/components/audio/ChannelForm.vue b/front/src/components/audio/ChannelForm.vue index 2fd35dbfa..951c40d07 100644 --- a/front/src/components/audio/ChannelForm.vue +++ b/front/src/components/audio/ChannelForm.vue @@ -9,6 +9,11 @@ import axios from 'axios' import AttachmentInput from '~/components/common/AttachmentInput.vue' import TagsSelector from '~/components/library/TagsSelector.vue' +import Layout from '~/components/ui/Layout.vue' +import Alert from '~/components/ui/Alert.vue' +import Input from '~/components/ui/Input.vue' +import Pills from '~/components/ui/Pills.vue' + interface Events { (e: 'category', contentCategory: ContentCategory): void (e: 'submittable', value: boolean): void @@ -41,6 +46,10 @@ const newValues = reactive({ metadata: { ...(props.object?.metadata ?? {}) } }) +const tagList = computed(() => ({ + custom: newValues.tags +})) + const creating = computed(() => props.object === null) const categoryChoices = computed(() => [ { @@ -155,14 +164,12 @@ defineExpose({