From f447ee7b9d8b8a9490974594200fdad6dd9ce22d Mon Sep 17 00:00:00 2001 From: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:54:04 +0800 Subject: [PATCH] Fix/firefox overflow error (#9438) --- .../workflow/nodes/_base/components/title-description-input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app/components/workflow/nodes/_base/components/title-description-input.tsx b/web/app/components/workflow/nodes/_base/components/title-description-input.tsx index 17b70f6b58..a5718ba2b6 100644 --- a/web/app/components/workflow/nodes/_base/components/title-description-input.tsx +++ b/web/app/components/workflow/nodes/_base/components/title-description-input.tsx @@ -36,6 +36,7 @@ export const TitleInput = memo(({ grow mr-2 px-1 h-6 text-base text-gray-900 font-semibold rounded-lg border border-transparent appearance-none outline-none hover:bg-gray-50 focus:border-gray-300 focus:shadow-xs focus:bg-white caret-[#295EFF] + min-w-0 `} placeholder={t('workflow.common.addTitle') || ''} onBlur={handleBlur}