diff --git a/web/app/components/workflow/nodes/human-input/node.tsx b/web/app/components/workflow/nodes/human-input/node.tsx index 9572eb7906..3ec85159e5 100644 --- a/web/app/components/workflow/nodes/human-input/node.tsx +++ b/web/app/components/workflow/nodes/human-input/node.tsx @@ -43,20 +43,30 @@ const Node: FC> = (props) => { )} - {userActions.length > 0 && ( -
- {userActions.map(userAction => ( -
- {userAction.id} - -
- ))} +
+ {userActions.length > 0 && ( + <> + {userActions.map(userAction => ( +
+ {userAction.id} + +
+ ))} + + )} +
+
Timeout
+
- )} +
) }