1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-06 02:27:20 +00:00

Revert "Fix delete u2f keys bug (#18042)" (#18107)

This reverts commit 91f5be889a.
This commit is contained in:
Lunny Xiao
2021-12-26 22:57:00 +08:00
committed by GitHub
parent 71e1ebfa60
commit a17fce31a9
2 changed files with 3 additions and 3 deletions

View File

@ -2959,8 +2959,8 @@ $(() => {
function showDeletePopup() {
const $this = $(this);
let filter = '';
if ($this.attr('modal-id')) {
filter += `#${$this.attr('modal-id')}`;
if ($this.attr('id')) {
filter += `#${$this.attr('id')}`;
}
const dialog = $(`.delete.modal${filter}`);