Commit b71258d
authored
fix(formatters): pad priority labels for consistent TRIAGE column alignment (#449)
## Summary
- Pads `Med` and `Low` priority labels to 4 characters (matching `High`)
in the TRIAGE column of `issue list` output, so the fixability
percentages align consistently across rows.
## Before
```
TRIAGE
High 82%
Med 65%
Low 40%
```
## After
```
TRIAGE
High 82%
Med 65%
Low 40%
```
The padding is applied inside the `colorTag()` call in
`formatPriorityLabel()`, so `string-width` correctly counts the visible
width for column sizing. `Critical` (8 chars) is left as-is since it's
visually distinct.1 parent a68826f commit b71258d
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
760 | 760 | | |
761 | 761 | | |
762 | 762 | | |
763 | | - | |
| 763 | + | |
764 | 764 | | |
765 | | - | |
| 765 | + | |
766 | 766 | | |
767 | 767 | | |
768 | 768 | | |
| |||
0 commit comments