Skip to content

Commit 55186a1

Browse files
committed
Fixes a message when no issues found
(#3621)
1 parent 63076d9 commit 55186a1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/plus/startWork/startWork.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,9 @@ export class StartWorkCommand extends QuickCommand<State> {
149149
function getItemsAndPlaceholder() {
150150
if (!context.result.items.length) {
151151
return {
152-
placeholder: 'All done! Take a vacation',
153-
items: [createDirectiveQuickPickItem(Directive.Cancel, undefined, { label: 'OK' })],
152+
placeholder: 'No issues found. Start work anyway.',
153+
// TODO: items: [createCallbackQuickPickItem(() => startWork(null), undefined, { label: 'Start Work' })],
154+
items: [createDirectiveQuickPickItem(Directive.Cancel, undefined, { label: 'Start Work' })],
154155
};
155156
}
156157

0 commit comments

Comments
 (0)