We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0510e1e commit dde452aCopy full SHA for dde452a
packages/main/src/components/AnalyticalTable/util/index.ts
@@ -191,7 +191,7 @@ export const getCombinedElementsHeight = (
191
}
192
height += el.offsetHeight;
193
194
- // Math.abs is required, because of layout thrashing (rounding errors)
+ // Math.abs is required, because of subpixel rounding errors
195
const updatedHeight = Math.abs(prevHeight - height) > 1 ? height : prevHeight;
196
prevHeightRef.current = updatedHeight;
197
0 commit comments