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 f5265cd commit 97e7022Copy full SHA for 97e7022
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
- Array.prototype.push.apply(this.items, items);
+ this.items.push(items);
52
this.done = done;
53
this.refresh();
54
}
0 commit comments