We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce769c6 + 747cc5a commit d239289Copy full SHA for d239289
src/components/table_content.rs
@@ -460,6 +460,10 @@ where
460
loading_ranges.push(current_range.clone());
461
current_range = current_range.end..current_range.end + chunk_size;
462
}
463
+ // when we got a missing_range which size is less than the chunk_size, add current_range to loading_ranges
464
+ if current_range.end > missing_range.end && current_range.start < missing_range.end {
465
+ loading_ranges.push(current_range);
466
+ }
467
} else {
468
loading_ranges.push(missing_range);
469
0 commit comments