1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix rule focus when switch 'otherwise' rule is used

Fixes #3182
This commit is contained in:
Nick O'Leary 2021-10-12 17:18:02 +01:00
parent be7e28af5d
commit 439af2a325
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -351,7 +351,9 @@
} else { } else {
selectField.width("auto") selectField.width("auto")
} }
if (fieldToFocus) {
fieldToFocus.typedInput("focus"); 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;