From 9f7062250f516e62be45f5767ed8d5aff3d30363 Mon Sep 17 00:00:00 2001 From: ZLY Date: Thu, 22 Jan 2026 11:11:56 +0800 Subject: [PATCH] =?UTF-8?q?pref(waitEditor):=20=E4=BC=98=E5=8C=96=E7=AD=89?= =?UTF-8?q?=E5=BE=85=E7=BB=84=E4=BB=B6=E7=9A=84=E6=97=B6=E9=97=B4=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FlowEditor/nodeEditors/components/WaitEditor.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx b/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx index 03e4979..80df2f2 100644 --- a/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx +++ b/src/components/FlowEditor/nodeEditors/components/WaitEditor.tsx @@ -13,9 +13,9 @@ interface DurationType { } const WaitEditor: React.FC = ({ nodeData, updateNodeData }) => { - const hourOptions = Array.from({ length: 23 }, (_, i) => i); - const minuteOptions = Array.from({ length: 59 }, (_, i) => i); - const secondOptions = Array.from({ length: 59 }, (_, i) => i); + const hourOptions = Array.from({ length: 24 }, (_, i) => i); + const minuteOptions = Array.from({ length: 60 }, (_, i) => i); + const secondOptions = Array.from({ length: 60 }, (_, i) => i); const [duration, setDuration] = useState({ hour: 0, minute: 0,