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
+1
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,
}