From 2710d4629fddc90d39be24fcf531f494723ac2c0 Mon Sep 17 00:00:00 2001 From: Avinash Shinde Date: Tue, 25 Feb 2020 13:17:19 +0530 Subject: [PATCH] fix: PL Pivot table Error message not showing --- src/root.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root.jsx b/src/root.jsx index 01e8dcc..b205726 100644 --- a/src/root.jsx +++ b/src/root.jsx @@ -33,7 +33,7 @@ class Root extends React.PureComponent { // Determine cell- and column separator width let cellWidth = '0px'; let columnSeparatorWidth = ''; - if (this.dataTableRef) { + if (this.dataTableRef && !error) { const tableWidth = this.dataTableRef.getBoundingClientRect().width; this.renderedTableWidth = tableWidth;