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.
1 parent 5eb17c6 commit 3d4c8eeCopy full SHA for 3d4c8ee
src/explorers/qiitaItems.ts
@@ -48,8 +48,8 @@ class QiitaItemsProvider implements TreeDataProvider<NodeTypes> {
48
*/
49
public async expandItems () {
50
const { value: items, done } = await this.itemsIterable.next();
51
- this.items.push(items);
52
- this.done = done!;
+ this.items = this.items.concat(items ?? []);
+ this.done = done ?? false;
53
this.refresh();
54
}
55
0 commit comments