diff --git a/templates/user/settings/security_u2f.tmpl b/templates/user/settings/security_u2f.tmpl
index dcc56d872..b33c9ae0e 100644
--- a/templates/user/settings/security_u2f.tmpl
+++ b/templates/user/settings/security_u2f.tmpl
@@ -8,7 +8,7 @@
{{range .U2FRegistrations}}
-
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 1b096a31d..0a0cb1293 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -2959,8 +2959,8 @@ $(() => {
function showDeletePopup() {
const $this = $(this);
let filter = '';
- if ($this.attr('id')) {
- filter += `#${$this.attr('id')}`;
+ if ($this.attr('modal-id')) {
+ filter += `#${$this.attr('modal-id')}`;
}
const dialog = $(`.delete.modal${filter}`);