@codingame/monaco-vscode-timeline-service-override 6.0.3 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-timeline-service-override",
3
- "version": "6.0.3",
3
+ "version": "7.0.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,6 +26,6 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@6.0.3"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@7.0.0"
30
30
  }
31
31
  }
@@ -432,6 +432,12 @@ let TimelinePane = class TimelinePane extends ViewPane {
432
432
  return false;
433
433
  }
434
434
  if (options === undefined) {
435
+ if (!reset &&
436
+ timeline !== undefined &&
437
+ timeline.items.length > 0 &&
438
+ !timeline.more) {
439
+ return false;
440
+ }
435
441
  options = { cursor: reset ? undefined : timeline?.cursor, limit: this.pageSize };
436
442
  }
437
443
  let request = this.pendingRequests.get(source);