Skip to content

Commit

Permalink
Align configure task quick pick closer to terminal
Browse files Browse the repository at this point in the history
Part of #93864
  • Loading branch information
alexr00 committed Nov 6, 2020
1 parent ad19579 commit 779a171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
}
this.showQuickPick(tasks ? tasks : taskResult!.tasks, placeholder,
{
label: nls.localize('TaskService.noEntryToRunSlow', 'No task to run found. Configure Tasks...'),
label: nls.localize('TaskService.noEntryToRunSlow', '$(plus) Configure a Task'),
task: null
},
true).
Expand All @@ -2489,7 +2489,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
} else {
this.showTwoLevelQuickPick(placeholder,
{
label: nls.localize('TaskService.noEntryToRun', 'No configured tasks. Configure Tasks...'),
label: nls.localize('TaskService.noEntryToRun', '$(plus) Configure a Task'),
task: null
}).
then(pickThen);
Expand Down

0 comments on commit 779a171

Please sign in to comment.