fix(trigger): timestamp should be number type

This commit is contained in:
hjlarry
2025-11-03 15:40:33 +08:00
parent 8fa0bb48df
commit 6507263b28

View File

@@ -52,7 +52,7 @@ const Panel = () => {
// is workflow
...((isWorkflowPage && !isChatMode) ? [{
name: 'timestamp',
value_type: 'integer' as const,
value_type: 'number' as const,
description: t('workflow.globalVar.fieldsDescription.triggerTimestamp'),
}] : []),
]