We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04f021 commit c685bb6Copy full SHA for c685bb6
sqlpage/sqlpage.js
@@ -354,8 +354,7 @@ function open_modal_for_hash() {
354
const hash = window.location.hash.substring(1);
355
if (!hash) return;
356
const modal = document.getElementById(hash);
357
- const classes = modal.classList;
358
- if (!modal || !classes.contains("modal")) return;
+ if (!modal || !modal.classList.contains("modal")) return;
359
const bootstrap_modal =
360
window.tabler.bootstrap.Modal.getOrCreateInstance(modal);
361
bootstrap_modal.show();
0 commit comments