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 50326ef commit 8347839Copy full SHA for 8347839
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['summary'];
51
- const changelogEntry = `${task.id} — ${task['summary']} — ${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