Skip to content

Commit

Permalink
Fixed a bug that prevented automatic creation of Consumers when an ob…
Browse files Browse the repository at this point in the history
…servable did not exist in the TD's Property
  • Loading branch information
hidetak committed Jul 30, 2024
1 parent 31cbee4 commit 6b89d86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const createClientFlowUsingDashboard = (tdString: string, existedNodes: a
...commonParams,
propertyName,
propertyDescription: tdProperty.description,
propertyObserve: tdProperty.observable,
propertyObserve: tdProperty.observable || false,
inputMode: DATATYPES[tdProperty.type || "propertyTypeNull"].inputMode,
convert: DATATYPES[tdProperty.type || "propertyTypeNull"].typeConvert,
}
Expand Down

0 comments on commit 6b89d86

Please sign in to comment.