Skip to content

Commit 930a8e3

Browse files
authored
Merge pull request #16 from knaka/develop
Fix to append fetched items
2 parents 75e2a57 + da7cb6a commit 930a8e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/explorers/qiitaItems.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class QiitaItemsProvider implements TreeDataProvider<NodeTypes> {
4848
*/
4949
public async expandItems () {
5050
const { value: items, done } = await this.itemsIterable.next();
51-
this.items.concat(items);
51+
Array.prototype.push.apply(this.items, items);
5252
this.done = done;
5353
this.refresh();
5454
}

0 commit comments

Comments
 (0)