Skip to content

Commit 6872ddb

Browse files
author
Jos van Roosmalen
committed
1 parent 5601210 commit 6872ddb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ml-backend/src/main/ml-modules/root/custom-modules/pipes/runtime/coreFunctions.sjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,9 +620,9 @@ function executeMapValues(propertiesAndWidgets,input,defaultValue) {
620620
let val = null;
621621
if (val === undefined) {
622622
val = "#NULL#";
623-
} else if (val === null) {
623+
} else if (input === null) {
624624
val = "#NULL#";
625-
} else if (val === "") {
625+
} else if (input === "") {
626626
val = "#EMPTY#";
627627
} else {
628628
val = String(input);

0 commit comments

Comments
 (0)