mirror of https://github.com/go-gitea/gitea.git
Fix delete u2f keys bug (#18042)
Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
parent
a818a48c76
commit
91f5be889a
|
@ -8,7 +8,7 @@
|
||||||
{{range .U2FRegistrations}}
|
{{range .U2FRegistrations}}
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<div class="right floated content">
|
<div class="right floated content">
|
||||||
<button class="ui red tiny button delete-button" id="delete-registration" data-url="{{$.Link}}/u2f/delete" data-id="{{.ID}}">
|
<button class="ui red tiny button delete-button" modal-id="delete-registration" data-url="{{$.Link}}/u2f/delete" data-id="{{.ID}}">
|
||||||
{{$.i18n.Tr "settings.delete_key"}}
|
{{$.i18n.Tr "settings.delete_key"}}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2959,8 +2959,8 @@ $(() => {
|
||||||
function showDeletePopup() {
|
function showDeletePopup() {
|
||||||
const $this = $(this);
|
const $this = $(this);
|
||||||
let filter = '';
|
let filter = '';
|
||||||
if ($this.attr('id')) {
|
if ($this.attr('modal-id')) {
|
||||||
filter += `#${$this.attr('id')}`;
|
filter += `#${$this.attr('modal-id')}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
const dialog = $(`.delete.modal${filter}`);
|
const dialog = $(`.delete.modal${filter}`);
|
||||||
|
|
Loading…
Reference in New Issue