mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-29 22:25:59 +00:00
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.
10 lines
360 B
JavaScript
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];
|
|
}
|
|
});
|
|
}
|