Skip to content

Commit adabfc9

Browse files
committed
fix
1 parent cdc92e8 commit adabfc9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/dashboard/Data/Browser/Browser.react.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,6 +1246,13 @@ class Browser extends DashboardView {
12461246
}
12471247

12481248
updateFilters(filters) {
1249+
// Check if there are selected rows
1250+
if (Object.keys(this.state.selection).length > 0) {
1251+
if (!window.confirm(SELECTED_ROWS_MESSAGE)) {
1252+
return;
1253+
}
1254+
}
1255+
12491256
const relation = this.state.relation;
12501257
if (relation) {
12511258
this.setRelation(relation, filters);

0 commit comments

Comments
 (0)