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