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
Two issues in the fractionOf denominator lookup flagged in review:
- metricAxis was only captured from the first record pushed into a shared
Total/corner slot, but `inner` (e.g. cellValue) keeps the value from the
last record pushed. For a multi-metric chart this could point the
denominator lookup at a different metric than the one the numerator
value actually belongs to. metricAxis is now updated on every push so it
stays in sync with `inner`.
- A null numerator (a DB rollup that's null, rendered blank in actual mode)
coerced to 0 under JS's `/` operator, turning a blank cell into a
measured 0.0% in fraction mode. `value()` now returns null in that case
instead of dividing.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
0 commit comments