debug(ui): Add visible styling and debug logging for status panel
All checks were successful
Build and Push Docker Image / build (push) Successful in 25s
Licence Check / Licence compatibility and copyright header verification (push) Successful in 56s
CI / Security audit (push) Successful in 1m9s
CI / Tests & coverage (push) Successful in 1m26s

Added debug logging to trace status panel rendering:
- Log when refresh starts
- Log when data is received
- Log errors with details

Also added visible dashed border and background to #status-content
to make it obvious when the div is present but empty.
This commit is contained in:
2026-05-19 22:30:54 +01:00
parent 252cc50aa4
commit d3483f3be7
2 changed files with 13 additions and 4 deletions

View File

@@ -1233,7 +1233,12 @@ body {
}
#status-content {
min-height: 100px;
min-height: 150px;
border: 1px dashed var(--border);
border-radius: 8px;
background: var(--background);
padding: 10px;
margin-bottom: 16px;
}
.status-loading {