Add lgtm: prefix to done_criterion in widget

Gives context that this is what the human is signing off on.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
wassname
2026-04-17 06:14:30 +08:00
parent 8e78a3ec92
commit dc86b18a44
+1 -1
View File
@@ -193,7 +193,7 @@ export class TaskWidget {
lines.push(truncate(text + suffix));
if (!isActive && task.status !== "completed" && (task as any).done_criterion) {
lines.push(truncate(` ${(task as any).done_criterion}`));
lines.push(truncate(` lgtm: ${(task as any).done_criterion}`));
}
}