mirror of https://github.com/node-red/node-red.git
Fix brackets required to pass building
parent
2fc950295c
commit
680bd7915c
|
@ -241,7 +241,9 @@ RED.editor = (function() {
|
|||
const typedInput = input.closest("div").find("input[class='red-ui-typedInput']");
|
||||
const typeField = typedInput.data("noderedTypedInput")?.typeField;
|
||||
const isTypeField = input.is(typeField);
|
||||
if (isTypeField) input = typedInput;
|
||||
if (isTypeField) {
|
||||
input = typedInput;
|
||||
}
|
||||
}
|
||||
const valid = validateNodeProperty(node, defaults, property, value);
|
||||
if (((typeof valid) === "string") || !valid) {
|
||||
|
|
Loading…
Reference in New Issue