Skip to content

Commit

Permalink
chore: fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
liuruibin committed Sep 12, 2024
1 parent d551462 commit 578c8c1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ def execute(self, question, **kwargs) -> NodeResult:
def get_details(self, index: int, **kwargs):
global_fields = []
for field in self.node.properties.get('config')['globalFields']:
key = field['value']
global_fields.append({
'label': field['label'],
'key': field['value'],
'value': self.workflow_manage[field['value']]
'key': key,
'value': self.workflow_manage[key] if key in self.workflow_manage else ''
})
return {
'name': self.node.properties.get('stepName'),
Expand Down

0 comments on commit 578c8c1

Please sign in to comment.