feat(web): workflow’s Editor Variable support Tag

This commit is contained in:
zhaoying
2025-12-26 12:29:46 +08:00
parent a0a3997af2
commit 52bc67d91d
10 changed files with 403 additions and 211 deletions

View File

@@ -85,7 +85,7 @@ const MessageEditor: FC<TextareaProps> = ({
nodeData.config?.variables?.sys.forEach((variable: any) => {
suggestions.push({
key: `${nodeId}_${variable.name}`,
label: variable.name,
label: `sys.${variable.name}`,
type: 'variable',
dataType: variable.type,
value: `sys.${variable.name}`,