This reverts commit 91f5be889af4081b05d63aadecb1373689e1f57c.
This commit is contained in:
parent
71e1ebfa60
commit
a17fce31a9
@ -8,7 +8,7 @@
|
||||
{{range .U2FRegistrations}}
|
||||
<div class="item">
|
||||
<div class="right floated content">
|
||||
<button class="ui red tiny button delete-button" modal-id="delete-registration" data-url="{{$.Link}}/u2f/delete" data-id="{{.ID}}">
|
||||
<button class="ui red tiny button delete-button" id="delete-registration" data-url="{{$.Link}}/u2f/delete" data-id="{{.ID}}">
|
||||
{{$.i18n.Tr "settings.delete_key"}}
|
||||
</button>
|
||||
</div>
|
||||
|
@ -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}`);
|
||||
|
Loading…
x
Reference in New Issue
Block a user