Skip to content

Commit

Permalink
Merge pull request #87 from qlik-oss/bugfix/QB-980
Browse files Browse the repository at this point in the history
PL Pivot table Error message not showing
  • Loading branch information
avinashshinde122 authored Feb 26, 2020
2 parents 8c093a4 + 2710d46 commit 2729321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/root.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 2729321

Please sign in to comment.