mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
79f8d057a1
commit
cefa0ae5b6
@ -55,7 +55,11 @@ RED.editor = function() {
|
|||||||
if (input.attr('type') === "checkbox") {
|
if (input.attr('type') === "checkbox") {
|
||||||
input.prop('checked',node[d]);
|
input.prop('checked',node[d]);
|
||||||
} else {
|
} else {
|
||||||
input.val(node[d]||"");
|
var val = node[d];
|
||||||
|
if (node[d] == null) {
|
||||||
|
val = "";
|
||||||
|
}
|
||||||
|
input.val(val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$("#node-input-"+d).change(function() {
|
$("#node-input-"+d).change(function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user