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/dataset-config/context-var/index.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/app/configuration/dataset-config/context-var/index.tsx b/app/components/app/configuration/dataset-config/context-var/index.tsx index ebba9c5..0de182b 100644 --- a/app/components/app/configuration/dataset-config/context-var/index.tsx +++ b/app/components/app/configuration/dataset-config/context-var/index.tsx @@ -14,12 +14,12 @@ const currItem = options.find(item => item.value === value) const notSetVar = !currItem return ( - <div className={cn(notSetVar ? 'rounded-bl-xl rounded-br-xl border-[#FEF0C7] bg-[#FEF0C7]' : 'border-components-panel-border-subtle', 'flex h-12 items-center justify-between border-t px-3 ')}> - <div className='flex shrink-0 items-center space-x-1'> + <div className={cn(notSetVar ? 'rounded-bl-xl rounded-br-xl bg-[#FEF0C7] border-[#FEF0C7]' : 'border-gray-200', 'flex justify-between items-center h-12 px-3 border-t ')}> + <div className='flex items-center space-x-1 shrink-0'> <div className='p-1'> - <BracketsX className='h-4 w-4 text-text-accent' /> + <BracketsX className='w-4 h-4 text-primary-500' /> </div> - <div className='mr-1 text-sm font-medium text-text-secondary'>{t('appDebug.feature.dataSet.queryVariable.title')}</div> + <div className='mr-1 text-sm font-medium text-gray-800'>{t('appDebug.feature.dataSet.queryVariable.title')}</div> <Tooltip popupContent={ <div className='w-[180px]'> -- Gitblit v1.8.0