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/app/configuration/debug/debug-with-multiple-model/index.tsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/app/configuration/debug/debug-with-multiple-model/index.tsx b/app/components/app/configuration/debug/debug-with-multiple-model/index.tsx index 75ba836..d5662cb 100644 --- a/app/components/app/configuration/debug/debug-with-multiple-model/index.tsx +++ b/app/components/app/configuration/debug/debug-with-multiple-model/index.tsx @@ -102,10 +102,10 @@ const inputsForm = modelConfig.configs.prompt_variables.filter(item => item.type !== 'api').map(item => ({ ...item, label: item.name, variable: item.key })) as InputForm[] return ( - <div className='flex h-full flex-col'> + <div className='flex flex-col h-full'> <div className={` - relative mb-3 grow overflow-auto px-6 + grow mb-3 relative px-6 overflow-auto `} style={{ height: isChatMode ? 'calc(100% - 60px)' : '100%' }} > @@ -131,7 +131,7 @@ } </div> {isChatMode && ( - <div className='shrink-0 px-6 pb-0'> + <div className='shrink-0 pb-0 px-6'> <ChatInputArea showFeatureBar showFileUpload={false} -- Gitblit v1.8.0