We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e3549 commit ed32658Copy full SHA for ed32658
src/commands/task-management/complete-task.command.ts
@@ -47,8 +47,8 @@ export class CompleteTaskCommand implements ICommand {
47
return Promise.reject(message);
48
}
49
50
- const summary = options.message ?? task.title;
51
- const changelogEntry = `${task.id} — ${task.title} — ${summary}`;
+ const summary = options.message ?? task.title ?? '';
+ const changelogEntry = `${task.id} — ${task.title ?? ''} — ${summary}`;
52
53
// Handle dry run
54
if (options.dryRun === true) {
0 commit comments