diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-04-03 14:04:34 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-04-03 14:04:34 -0300 |
commit | edf927a8d145e27f137d957d20c477c31f1151c3 (patch) | |
tree | 1d999a6dc75c60f872d845eda40dd74136fb3fa2 /src | |
parent | fc575fbbb4809f15f819e7bd426126f9e6eadbf4 (diff) |
data: exposeConstant: accept exposing null
Diffstat (limited to 'src')
-rw-r--r-- | src/data/composite/control-flow/exposeConstant.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/composite/control-flow/exposeConstant.js b/src/data/composite/control-flow/exposeConstant.js index e0435478..e76699c5 100644 --- a/src/data/composite/control-flow/exposeConstant.js +++ b/src/data/composite/control-flow/exposeConstant.js @@ -12,7 +12,7 @@ export default templateCompositeFrom({ compose: false, inputs: { - value: input.staticValue(), + value: input.staticValue({acceptsNull: true}), }, steps: () => [ |