Skip to content

Commit dcb0929

Browse files
feat: refining the UI - added space between the items
1 parent 88b213f commit dcb0929

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/Commands/VendorKill.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -731,8 +731,8 @@ protected function writeListLines(): void
731731
? "<fg=gray>{$numberText}</>"
732732
: ($isActive ? "<fg=cyan>{$numberText}</>" : "<fg=gray>{$numberText}</>");
733733

734-
// prefixLen = 1 (leading space) + 2 (indicator) + 1 (space) + numWidth + 1 (dot) + 1 (space)
735-
$prefixLen = 1 + 2 + 1 + $numWidth + 1 + 1;
734+
// prefixLen = 1 (leading space) + 2 (indicator) + numWidth + 1 (dot) + 1 (space)
735+
$prefixLen = 1 + 2 + $numWidth + 1 + 1;
736736
$badgePad = 1; // 1 space before right edge
737737

738738
// In --all mode prepend a type tag to the badge so the user can distinguish dirs

0 commit comments

Comments
 (0)