AS QUICK AS YOU CAN go and click a numerator checkbox
you should see your checkbox be reset to unchecked
This appears to be due to the visConfig coming back from the user database after a PATCH update. You may not see it on faster connections?
The useEffect in packages/libs/coreui/src/components/inputs/SelectList.tsx is presumably resetting the local state of the component because vizConfig.numeratorValues has changed (even though it has actually not changed from an empty array to an empty array?) Is there a rogue []? Yes there is. Fix to follow
To reproduce
This appears to be due to the
visConfig
coming back from the user database after a PATCH update. You may not see it on faster connections?The useEffect in
packages/libs/coreui/src/components/inputs/SelectList.tsx
is presumably resetting the local state of the component becausevizConfig.numeratorValues
has changed (even though it has actually not changed from an empty array to an empty array?) Is there a rogue[]
? Yes there is. Fix to follow