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/workflow/nodes/_base/components/title-description-input.tsx | 19 ++++++++++--------- 1 files changed, 10 insertions(+), 9 deletions(-) diff --git a/app/components/workflow/nodes/_base/components/title-description-input.tsx b/app/components/workflow/nodes/_base/components/title-description-input.tsx index 062190a..f17d34a 100644 --- a/app/components/workflow/nodes/_base/components/title-description-input.tsx +++ b/app/components/workflow/nodes/_base/components/title-description-input.tsx @@ -3,7 +3,7 @@ useCallback, useState, } from 'react' -import Textarea from 'react-textarea-autosize' +import Textarea from 'rc-textarea' import { useTranslation } from 'react-i18next' type TitleInputProps = { @@ -33,8 +33,8 @@ value={localValue} onChange={e => setLocalValue(e.target.value)} className={` - system-xl-semibold mr-2 h-7 min-w-0 grow appearance-none rounded-md border border-transparent bg-transparent px-1 text-text-primary - outline-none focus:shadow-xs + grow mr-2 px-1 h-7 text-text-primary system-xl-semibold rounded-md border border-transparent appearance-none outline-none + focus:shadow-xs min-w-0 `} placeholder={t('workflow.common.addTitle') || ''} onBlur={handleBlur} @@ -63,23 +63,24 @@ return ( <div className={` - leading-0 group flex max-h-[60px] overflow-y-auto rounded-lg bg-components-panel-bg - px-2 py-[5px] + group flex px-2 py-[5px] max-h-[60px] rounded-lg overflow-y-auto + leading-0 bg-components-panel-bg ${focus && '!shadow-xs'} `} > <Textarea value={value} onChange={e => onChange(e.target.value)} - minRows={1} + rows={1} onFocus={handleFocus} onBlur={handleBlur} className={` - w-full resize-none appearance-none bg-transparent text-xs - leading-[18px] text-text-primary caret-[#295EFF] - outline-none placeholder:text-text-quaternary + w-full text-xs text-gray-900 leading-[18px] bg-transparent + appearance-none outline-none resize-none + placeholder:text-gray-400 caret-[#295EFF] `} placeholder={t('workflow.common.addDescription') || ''} + autoSize /> </div> ) -- Gitblit v1.8.0