Skip to content

Commit

Permalink
Fixes a message when no issues found
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeibbb committed Oct 24, 2024
1 parent c8c558b commit cd6ad00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/plus/startWork/startWork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ export class StartWorkCommand extends QuickCommand<State> {
function getItemsAndPlaceholder() {
if (!context.result.items.length) {
return {
placeholder: 'All done! Take a vacation',
items: [createDirectiveQuickPickItem(Directive.Cancel, undefined, { label: 'OK' })],
placeholder: 'No issues found. Start work anyway.',
// TODO: items: [createCallbackQuickPickItem(() => startWork(null), undefined, { label: 'Start Work' })],
items: [createDirectiveQuickPickItem(Directive.Cancel, undefined, { label: 'Start Work' })],
};
}

Expand Down

0 comments on commit cd6ad00

Please sign in to comment.