Skip to content

Commit c967762

Browse files
Timeline view - fetch all rows when filters are disabled baserow#4136 (baserow#4418)
Timeline view - fetch all rows when filters are disabled baserow#4136
1 parent 5a440cb commit c967762

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "bug",
3+
"message": "Timeline view - fetch all rows again if a filter is disabled.",
4+
"issue_origin": "github",
5+
"issue_number": 4136,
6+
"domain": "database",
7+
"bullet_points": [],
8+
"created_at": "2025-12-10"
9+
}

web-frontend/modules/database/store/view/bufferedRows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ export default ({ service, customPopulateRow, fieldOptions }) => {
125125
// to the visible range.
126126
while (limit < maxRequestSize) {
127127
const previous = rows[offset - 1]
128-
const next = rows[offset + limit + 1]
129128

129+
const next = rows[offset + limit]
130130
// If both the previous and next item are not `null`, which means there is
131131
// no un-fetched row before or after the range anymore, we want to stop the for
132132
// loop because there is nothing to fetch.

0 commit comments

Comments
 (0)