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