From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/datasets/external-knowledge-base/create/KnowledgeBaseInfo.tsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/datasets/external-knowledge-base/create/KnowledgeBaseInfo.tsx b/app/components/datasets/external-knowledge-base/create/KnowledgeBaseInfo.tsx index 4261208..fec526b 100644 --- a/app/components/datasets/external-knowledge-base/create/KnowledgeBaseInfo.tsx +++ b/app/components/datasets/external-knowledge-base/create/KnowledgeBaseInfo.tsx @@ -24,7 +24,7 @@ <div className='flex flex-col gap-4 self-stretch'> <div className='flex flex-col gap-1 self-stretch'> <div className='flex flex-col justify-center self-stretch'> - <label className='system-sm-semibold text-text-secondary'>{t('dataset.externalKnowledgeName')}</label> + <label className='text-text-secondary system-sm-semibold'>{t('dataset.externalKnowledgeName')}</label> </div> <Input value={name} @@ -34,14 +34,14 @@ </div> <div className='flex flex-col gap-1 self-stretch'> <div className='flex flex-col justify-center self-stretch'> - <label className='system-sm-semibold text-text-secondary'>{t('dataset.externalKnowledgeDescription')}</label> + <label className='text-text-secondary system-sm-semibold'>{t('dataset.externalKnowledgeDescription')}</label> </div> <div className='flex flex-col gap-1 self-stretch'> <textarea value={description} onChange={ e => handleDescriptionChange(e)} placeholder={t('dataset.externalKnowledgeDescriptionPlaceholder') ?? ''} - className={`flex h-20 items-start self-stretch rounded-lg bg-components-input-bg-normal p-3 py-2 ${description ? 'text-components-input-text-filled' : 'text-components-input-text-placeholder'} system-sm-regular`} + className={`flex h-20 py-2 p-3 self-stretch items-start rounded-lg bg-components-input-bg-normal ${description ? 'text-components-input-text-filled' : 'text-components-input-text-placeholder'} system-sm-regular`} /> </div> </div> -- Gitblit v1.8.0