summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-migration.js
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/features/repo-migration.js')
-rw-r--r--web_src/js/features/repo-migration.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/js/features/repo-migration.js b/web_src/js/features/repo-migration.js
index ee2ec01943..3bd0e6d72c 100644
--- a/web_src/js/features/repo-migration.js
+++ b/web_src/js/features/repo-migration.js
@@ -15,9 +15,9 @@ export function initRepoMigration() {
checkAuth();
setLFSSettingsVisibility();
- $user.on('keyup', () => {checkItems(false)});
- $pass.on('keyup', () => {checkItems(false)});
- $token.on('keyup', () => {checkItems(true)});
+ $user.on('input', () => {checkItems(false)});
+ $pass.on('input', () => {checkItems(false)});
+ $token.on('input', () => {checkItems(true)});
$mirror.on('change', () => {checkItems(true)});
$('#lfs_settings_show').on('click', () => { showElem($lfsEndpoint); return false });
$lfs.on('change', setLFSSettingsVisibility);