Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/node/wait-until.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,5 @@ If the received message has this property set to any value the node will be set
Value types:

- `entity`: entity data of the triggered entity. Will be `undefined` if multiple entities are selected and the timeout occurs.
- `config`: config properties of the node
- `config`: config properties of the node.
- `timeout`: set to `true` if node output was from timeout.
1 change: 1 addition & 0 deletions src/nodes/wait-until/WaitUntilController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ export default class WaitUntil extends InputOutputController<
{
entity: state,
config: this.node.config,
timeout: true,
},
);

Expand Down