2021-10-16 17:28:04 +00:00
|
|
|
export function initSshKeyFormParser() {
|
2024-02-16 13:34:29 +00:00
|
|
|
// 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];
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|