Clean up v2.

This commit is contained in:
James Cole
2025-07-20 12:32:53 +02:00
parent 680f554981
commit a60882d5f5
8 changed files with 45 additions and 24 deletions

View File

@@ -21,5 +21,9 @@
export function showInternalsButton() {
// console.log('showInternalsButton');
document.querySelector('.toggle-page-internals').classList.remove('d-none');
let obj = document.querySelector('.toggle-page-internals');
if (obj === null) {
return;
}
obj.classList.remove('d-none');
}