Merge pull request #6433 from Qelxiros/df/size_padding

df: fix size column padding
This commit is contained in:
Daniel Hofstetter 2024-05-27 11:04:03 +02:00 committed by GitHub
commit 22588a8bfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -201,6 +201,7 @@ impl Column {
// 14 = length of "Filesystem" plus 4 spaces
Self::Source => 14,
Self::Used => 5,
Self::Size => 5,
// the shortest headers have a length of 4 chars so we use that as the minimum width
_ => 4,
}