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