aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/sshkey-helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/features/sshkey-helper.js')
-rw-r--r--web_src/js/features/sshkey-helper.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/web_src/js/features/sshkey-helper.js b/web_src/js/features/sshkey-helper.js
index 099b54d3a6..3960eefe8e 100644
--- a/web_src/js/features/sshkey-helper.js
+++ b/web_src/js/features/sshkey-helper.js
@@ -1,12 +1,10 @@
-import $ from 'jquery';
-
export function initSshKeyFormParser() {
-// Parse SSH Key
- $('#ssh-key-content').on('change paste keyup', function () {
- const arrays = $(this).val().split(' ');
- const $title = $('#ssh-key-title');
- if ($title.val() === '' && arrays.length === 3 && arrays[2] !== '') {
- $title.val(arrays[2]);
+ // Parse SSH Key
+ document.getElementById('ssh-key-content')?.addEventListener('input', function () {
+ const arrays = this.value.split(' ');
+ const title = document.getElementById('ssh-key-title');
+ if (!title.value && arrays.length === 3 && arrays[2] !== '') {
+ title.value = arrays[2];
}
});
}