Skip to content

Commit

Permalink
show all tasks when no tasks are found for given filter and go back i…
Browse files Browse the repository at this point in the history
…s selected (#156458)

fix #156286
  • Loading branch information
meganrogge committed Jul 27, 2022
1 parent 6fccf5d commit bcba696
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts
Expand Up @@ -2828,6 +2828,10 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
taskQuickPick.dispose();
return;
} else {
if (!!filter) {
// filter yielded no results, so show all
this._runTaskCommand();
}
return;
}
} else {
Expand Down

0 comments on commit bcba696

Please sign in to comment.