mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-13 14:27:17 +00:00
fix(ui): clear fields when canceling adding ssh key (#8990)
- Add javascript to clear fields upon clicking the cancel button inside the panel for adding new SSH keys. - Add E2E test. - Resolves #8915 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8990 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: dawe <dawedawe@posteo.de> Co-committed-by: dawe <dawedawe@posteo.de>
This commit is contained in:
parent
bd59fa4df3
commit
a87153b089
3 changed files with 27 additions and 1 deletions
|
@ -8,3 +8,10 @@ export function initSshKeyFormParser() {
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function initSshKeyCancelButton() {
|
||||
document.getElementById('cancel-ssh-button')?.addEventListener('click', () => {
|
||||
document.getElementById('ssh-key-title').value = '';
|
||||
document.getElementById('ssh-key-content').value = '';
|
||||
});
|
||||
}
|
||||
|
|
|
@ -49,7 +49,7 @@ import {initAdminEmails} from './features/admin/emails.js';
|
|||
import {initAdminCommon} from './features/admin/common.js';
|
||||
import {initRepoTemplateSearch} from './features/repo-template.js';
|
||||
import {initRepoCodeView} from './features/repo-code.js';
|
||||
import {initSshKeyFormParser} from './features/sshkey-helper.js';
|
||||
import {initSshKeyFormParser, initSshKeyCancelButton} from './features/sshkey-helper.js';
|
||||
import {initRepoArchiveLinks} from './features/repo-common.js';
|
||||
import {initRepoMigrationStatusChecker} from './features/repo-migrate.js';
|
||||
import {
|
||||
|
@ -122,6 +122,7 @@ onDomReady(() => {
|
|||
initMarkupAnchors();
|
||||
initMarkupContent();
|
||||
initSshKeyFormParser();
|
||||
initSshKeyCancelButton();
|
||||
initStopwatch();
|
||||
initTableSort();
|
||||
initAutoFocusEnd();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue