Merge pull request #3185 from node-red/switch-focus-fix

Fix rule focus when switch 'otherwise' rule is used
This commit is contained in:
Nick O'Leary
2021-10-13 14:41:42 +01:00
committed by GitHub

View File

@@ -351,7 +351,9 @@
} else { } else {
selectField.width("auto") selectField.width("auto")
} }
fieldToFocus.typedInput("focus"); if (fieldToFocus) {
fieldToFocus.typedInput("focus");
}
// Preselect the contents of the element // Preselect the contents of the element
// if (focusValueField && document.activeElement) { // if (focusValueField && document.activeElement) {
// document.activeElement.selectionStart = 0; // document.activeElement.selectionStart = 0;