updateStatusBar function test exported

Last updated: 2026-03-04T23:21:38.370Z

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)

graph LR updateStatusBar["updateStatusBar"] renderShell["renderShell"] fillAll["fillAll"] renderShell -->|calls| updateStatusBar fillAll -->|uses| updateStatusBar style updateStatusBar fill:#dbeafe,stroke:#2563eb,stroke-width:2px click updateStatusBar "98f5b4bdf9734d7c.html" click renderShell "49d8574256a889e1.html" click fillAll "388f033c1be0f292.html"
SourceType
renderShell calls
fillAll uses