We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f6199 commit 8d28ac2Copy full SHA for 8d28ac2
apps/application/flow/step_node/start_node/impl/base_start_node.py
@@ -17,9 +17,11 @@
17
18
19
def get_default_global_variable(input_field_list: List):
20
- return {item.get('variable'): item.get('default_value') for item in input_field_list if
21
- item.get('default_value', None) is not None}
22
-
+ return {
+ item.get('variable') or item.get('field'): item.get('default_value')
+ for item in input_field_list
23
+ if item.get('default_value', None) is not None
24
+ }
25
26
def get_global_variable(node):
27
body = node.workflow_manage.get_body()
0 commit comments