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 {
selectField.width("auto")
}
fieldToFocus.typedInput("focus");
if (fieldToFocus) {
fieldToFocus.typedInput("focus");
}
// Preselect the contents of the element
// if (focusValueField && document.activeElement) {
// document.activeElement.selectionStart = 0;