Fix status button ID mismatch - use status-btn instead of status-toggle
Build and Push Docker Image / build (push) Successful in 45s
Licence Check / Licence compatibility and copyright header verification (push) Successful in 1m3s
CI / Security audit (push) Successful in 1m17s
CI / Tests & coverage (push) Successful in 1m23s

This commit is contained in:
2026-05-21 01:12:55 +01:00
parent b9b5d7d393
commit dbdfe3f329
+1 -1
View File
@@ -31,7 +31,7 @@ document.addEventListener('DOMContentLoaded', () => {
}
// Status panel toggle
const statusToggle = document.getElementById('status-toggle');
const statusToggle = document.getElementById('status-btn');
if (statusToggle) {
statusToggle.addEventListener('click', toggleStatusPanel);
}