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/http/components/timeout/index.tsx | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app/components/workflow/nodes/http/components/timeout/index.tsx b/app/components/workflow/nodes/http/components/timeout/index.tsx
index b0fd3b2..f20a91d 100644
--- a/app/components/workflow/nodes/http/components/timeout/index.tsx
+++ b/app/components/workflow/nodes/http/components/timeout/index.tsx
@@ -27,15 +27,15 @@
}> = ({ title, description, placeholder, value, onChange, readOnly, min, max }) => {
return (
<div className="space-y-1">
- <div className="flex h-[18px] items-center space-x-2">
- <span className="text-[13px] font-medium text-text-primary">{title}</span>
- <span className="text-xs font-normal text-text-tertiary">{description}</span>
+ <div className="flex items-center h-[18px] space-x-2">
+ <span className="text-[13px] font-medium text-gray-900">{title}</span>
+ <span className="text-xs font-normal text-gray-500">{description}</span>
</div>
<Input
type='number'
value={value}
onChange={(e) => {
- const value = Math.max(min, Math.min(max, Number.parseInt(e.target.value, 10)))
+ const value = Math.max(min, Math.min(max, parseInt(e.target.value, 10)))
onChange(value)
}}
placeholder={placeholder}
--
Gitblit v1.8.0