lgtm?'s -> lgtm's in widget header

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
wassname
2026-04-17 06:20:29 +08:00
parent ee57eb2eae
commit 8ba835df47
+1 -1
View File
@@ -132,7 +132,7 @@ export class TaskWidget {
if (completed.length > 0) parts.push(`${completed.length} done`); if (completed.length > 0) parts.push(`${completed.length} done`);
if (inProgress.length > 0) parts.push(`${inProgress.length} in progress`); if (inProgress.length > 0) parts.push(`${inProgress.length} in progress`);
if (pending.length > 0) parts.push(`${pending.length} open`); if (pending.length > 0) parts.push(`${pending.length} open`);
const statusText = `${tasks.length} lgtm?'s (${parts.join(", ")})`; const statusText = `${tasks.length} lgtm's (${parts.join(", ")})`;
const spinnerChar = SPINNER[this.widgetFrame % SPINNER.length]; const spinnerChar = SPINNER[this.widgetFrame % SPINNER.length];
const lines: string[] = [truncate(theme.fg("accent", "●") + " " + theme.fg("accent", statusText))]; const lines: string[] = [truncate(theme.fg("accent", "●") + " " + theme.fg("accent", statusText))];