Skip to content

Commit 42cf3e3

Browse files
committed
Fixes a message when no issues found
(#3621)
1 parent a4003e9 commit 42cf3e3

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
@@ -338,8 +338,9 @@ export class StartWorkCommand extends QuickCommand<State> {
338338
function getItemsAndPlaceholder() {
339339
if (!context.result.items.length) {
340340
return {
341-
placeholder: 'All done! Take a vacation',
342-
items: [createDirectiveQuickPickItem(Directive.Cancel, undefined, { label: 'OK' })],
341+
placeholder: 'No issues found. Start work anyway.',
342+
// TODO: items: [createCallbackQuickPickItem(() => startWork(null), undefined, { label: 'Start Work' })],
343+
items: [createDirectiveQuickPickItem(Directive.Cancel, undefined, { label: 'Start Work' })],
343344
};
344345
}
345346

0 commit comments

Comments
 (0)