forgejo/web_src/js/features/sshkey-helper.js
Jordan Atwood 4dcec32505
feat(ui): clear panel form inputs when closed
This commit replaces the SSH key-specific code in favor of resetting
panel forms when closed, which thus carries the same behavior over to
the GPG key field.
2025-09-16 15:49:02 -07:00

10 lines
360 B
JavaScript

export function initSshKeyFormParser() {
// 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];
}
});
}