Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui: fix linegraph render for large clusters
We were feeding `Math.min` and `Math.max` very large arrays (length equal to ~10e7). These functions take variadic arguments, and the runtime can't handle that many arguments. As a result we blow the stack, causing uncaught range errors. Instead, we'll use lodash min and max which are not variadic. Resolves #101377 Epic: None Release note: None
- Loading branch information