We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79c3329 commit ead52ddCopy full SHA for ead52dd
web_src/js/features/repo-migration.js
@@ -15,9 +15,9 @@ export function initRepoMigration() {
15
checkAuth();
16
setLFSSettingsVisibility();
17
18
- $user.on('keyup', () => {checkItems(false)});
19
- $pass.on('keyup', () => {checkItems(false)});
20
- $token.on('keyup', () => {checkItems(true)});
+ $user.on('input', () => {checkItems(false)});
+ $pass.on('input', () => {checkItems(false)});
+ $token.on('input', () => {checkItems(true)});
21
$mirror.on('change', () => {checkItems(true)});
22
$('#lfs_settings_show').on('click', () => { showElem($lfsEndpoint); return false });
23
$lfs.on('change', setLFSSettingsVisibility);
0 commit comments