We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d020fed commit 2788653Copy full SHA for 2788653
assets/js/desktop/pages/connection.js
@@ -135,9 +135,11 @@ function updateTwoFactorVisibility() {
135
if (useTwoFactor === 1) {
136
divLogin.hide();
137
divTwoFactor.show();
138
+ twoFactorInput.focus();
139
} else {
140
divLogin.show();
141
divTwoFactor.hide();
142
+ loginInput.focus();
143
}
144
145
src/Enums/UpdateType.php
@@ -29,7 +29,7 @@ class UpdateType extends Enum
29
const ALL = 'ALL';
30
const CORE = 'core';
31
const OTHERS = 'others';
32
- const PLUGINS = 'plugin';
+ const PLUGIN = 'plugin';
33
const SCRIPT = 'script';
34
const WIDGET = 'widget';
35
0 commit comments