From df105eccc058635f28a4f4546d64a21a4e0183e9 Mon Sep 17 00:00:00 2001 From: 404-html Date: Tue, 23 Jul 2024 10:05:25 +0200 Subject: [PATCH] fix: descriptive stats not showing --- src/dashboard/Data/Browser/Browser.react.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dashboard/Data/Browser/Browser.react.js b/src/dashboard/Data/Browser/Browser.react.js index 88f07a5998..188c6f46a6 100644 --- a/src/dashboard/Data/Browser/Browser.react.js +++ b/src/dashboard/Data/Browser/Browser.react.js @@ -1834,7 +1834,7 @@ class Browser extends DashboardView { } onMouseUpRowCheckBox() { - this.setState({ + this.state.rowCheckboxDragging && this.setState({ rowCheckboxDragging: false, draggedRowSelection: false, }); @@ -1961,7 +1961,6 @@ class Browser extends DashboardView { setRelation={this.setRelation} onAddColumn={this.showAddColumn} onAddRow={this.addRow} - onAbortAddRow={this.abortAddRow} onAddRowWithModal={this.addRowWithModal} onAddClass={this.showCreateClass} showNote={this.showNote}