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 75e2a57 + da7cb6a commit 930a8e3Copy full SHA for 930a8e3
src/explorers/qiitaItems.ts
@@ -48,7 +48,7 @@ class QiitaItemsProvider implements TreeDataProvider<NodeTypes> {
48
*/
49
public async expandItems () {
50
const { value: items, done } = await this.itemsIterable.next();
51
- this.items.concat(items);
+ Array.prototype.push.apply(this.items, items);
52
this.done = done;
53
this.refresh();
54
}
0 commit comments