setFillingInProgress function exported

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

Metrics

LOC: 3 Complexity: 1 Params: 1

Signature

setFillingInProgress(value: boolean): : void

Summary

Marks that filling is in progress (to avoid self-triggering)

Source Code

export function setFillingInProgress(value: boolean): void {
  isFillingInProgress = value;
}

No outgoing dependencies.

Impact (Incoming)

graph LR setFillingInProgress["setFillingInProgress"] setNativeValue["setNativeValue"] fillAllFields["fillAllFields"] fillContextualAI["fillContextualAI"] setNativeValue -->|uses| setFillingInProgress fillAllFields -->|calls| setFillingInProgress fillContextualAI -->|calls| setFillingInProgress style setFillingInProgress fill:#dbeafe,stroke:#2563eb,stroke-width:2px click setFillingInProgress "5404cb0266e02c7f.html" click setNativeValue "334bd99609d7c37c.html" click fillAllFields "12dbe3fb8e692059.html" click fillContextualAI "854e1a4562eb49e4.html"
SourceType
setNativeValue uses
fillAllFields calls
fillContextualAI calls