updateStatusBar function test exported
Last updated: 2026-03-04T23:21:38.370Z
Location
Metrics
LOC: 8
Complexity: 3
Params: 0
Signature
updateStatusBar(): : void
Source Code
export function updateStatusBar(): void {
const bar = document.getElementById("status-bar");
if (!bar) return;
bar.textContent =
panelState.detectedFields.length > 0
? `${panelState.detectedFields.length} ${t("fieldsDetected")}`
: t("noFieldsDetected");
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| renderShell | calls |
| fillAll | uses |