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
## Summary & Motivation
In `buildGraphData`, we're currently using spread operators to keep the
internal `data` value from being mutated, but this avoidance isn't
useful and it's causing a perf bottleneck for large asset graphs.
Just mutate `data` directly within the function.
This gets the large sample asset graph (~15k assets) from 8+ seconds of
chug time to ~80ms.
## How I Tested These Changes
Proxy as izzy's org, load Catalog. Verify with logging that the timing
for this function has dropped.
## Changelog
[ui] Improve browser performance for large asset graphs.
0 commit comments