Skip to content

Commit 1c003b9

Browse files
fix(formatters): pad Med/Low priority labels to 4 chars for consistent TRIAGE column alignment
1 parent 744801c commit 1c003b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/formatters/human.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -760,9 +760,9 @@ function formatPriorityLabel(priority?: string | null): string {
760760
case "high":
761761
return colorTag("red", "High");
762762
case "medium":
763-
return colorTag("yellow", "Med");
763+
return colorTag("yellow", "Med ");
764764
case "low":
765-
return colorTag("muted", "Low");
765+
return colorTag("muted", "Low ");
766766
default:
767767
return priority;
768768
}

0 commit comments

Comments
 (0)