Skip to content

Commit db2d59e

Browse files
authored
fix: data export is missing rows when exporting more than 100 rows (#2087)
1 parent b04941d commit db2d59e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -1261,6 +1261,7 @@ class Browser extends DashboardView {
12611261
objectIds.push(objectId);
12621262
}
12631263
query.containedIn('objectId', objectIds);
1264+
query.limit(objectIds.length);
12641265
}
12651266

12661267
const classColumns = this.getClassColumns(className, false);

0 commit comments

Comments
 (0)