We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a823659 commit 20533a5Copy full SHA for 20533a5
packages/react-components/src/components/timegraph-output-component.tsx
@@ -390,8 +390,8 @@ export class TimegraphOutputComponent extends AbstractTreeOutputComponent<Timegr
390
);
391
signalManager().emit('ROW_SELECTIONS_CHANGED', signalPayload);
392
}
393
- if (!isEqual(this.state.columns, prevState.columns)) {
394
- if (this.state.columns) {
+ if (this.state.timegraphTree.length > 0 && prevState.timegraphTree.length === 0) {
+ if (this.state.columns && this.state.columns.length > 0) {
395
const header = this.treeRef.current?.querySelector('th');
396
if (header) {
397
new ResizeObserver(target => {
0 commit comments