From 77950e48c76f4a3b29d01831d43039caba29888a Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期二, 18 十一月 2025 14:12:42 +0800
Subject: [PATCH] 修改
---
app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx b/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx
index e35977a..d9a4d2c 100644
--- a/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx
+++ b/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx
@@ -27,7 +27,7 @@
const { locale } = useContext(I18n)
// max-h-[300px] overflow-y-auto todo: use portal to handle long list
return (
- <div className='space-y-1 rounded-lg border border-components-panel-border bg-components-panel-bg p-1 shadow-lg' style={{
+ <div className='p-1 bg-white rounded-lg border border-gray-200 shadow-lg space-y-1' style={{
width: itemWidth || 228,
}}>
{((!vars || vars.length === 0) && popupFor)
@@ -35,7 +35,7 @@
? (
<ListEmpty
title={t('workflow.variableReference.noAvailableVars') || ''}
- description={<div className='system-xs-regular text-text-tertiary'>
+ description={<div className='text-text-tertiary system-xs-regular'>
{t('workflow.variableReference.noVarsForOperation')}
</div>}
/>
@@ -43,7 +43,7 @@
: (
<ListEmpty
title={t('workflow.variableReference.noAssignedVars') || ''}
- description={<div className='system-xs-regular text-text-tertiary'>
+ description={<div className='text-text-tertiary system-xs-regular'>
{t('workflow.variableReference.assignedVarsDescription')}
<a target='_blank' rel='noopener noreferrer'
className='text-text-accent-secondary'
--
Gitblit v1.8.0