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 1db99aa commit f80ebceCopy full SHA for f80ebce
packages/main/src/components/AnalyticalTable/hooks/useDynamicColumnWidths.ts
@@ -443,10 +443,10 @@ const useColumnsDeps = (
443
};
444
445
const columns = (columns: TableInstance['columns'], { instance }: { instance: TableInstance }) => {
446
- const { scaleWidthMode, loading, fontsReady } = instance.webComponentsReactProperties;
+ const { scaleWidthMode, loading } = instance.webComponentsReactProperties;
447
const { state } = instance;
448
const { hiddenColumns, tableClientWidth: totalWidth } = state;
449
- if (!instance.state || !instance.rows || !fontsReady) {
+ if (!instance.state || !instance.rows) {
450
return columns;
451
}
452
0 commit comments