Skip to content

Commit

Permalink
Fix previous incorrect PR
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSchuldenfrei committed Jan 8, 2019
1 parent 96fc77e commit 5f03dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export class Controller {
}

private async search() {
var search = await window.showQuickPick(this._tree.getAll());
var search = await window.showQuickPick(this._tree.getQuickPickItems());
if (search) {
this._treeView.reveal(search.node);
}
Expand Down

0 comments on commit 5f03dde

Please sign in to comment.