You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf(ui): short-circuit form-state processing for fields failing admin.condition
Previously only the render call was gated on passesCondition; the switch
still ran filterOptions resolves (DB queries on relationship/upload),
blocks validation, and full recursion into hidden subtrees. Add an
early-exit guard so a failing condition writes a minimal state entry and
returns, skipping access checks, validation, switch processing,
filterOptions, and child iteration. The client re-requests form state on
condition flips, so the minimal entry is sufficient.
0 commit comments