diff --git a/front/src/components/audio/ChannelForm.vue b/front/src/components/audio/ChannelForm.vue index 76076e190..24f132904 100644 --- a/front/src/components/audio/ChannelForm.vue +++ b/front/src/components/audio/ChannelForm.vue @@ -8,11 +8,11 @@ import { useI18n } from 'vue-i18n' 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 Textarea from '~/components/ui/Textarea.vue' import Pills from '~/components/ui/Pills.vue' @@ -282,10 +282,11 @@ defineExpose({ </select> </div> <div class="ui field"> - <label for="channel-name"> - {{ t('components.audio.ChannelForm.label.description') }} - </label> - <content-form v-model="newValues.description" /> + <Textarea + v-model="newValues.description" + :label="t('components.audio.ChannelForm.label.description')" + initial-lines="3" + /> </div> <template v-if="newValues.content_category === 'podcast'"