Skip to content

Commit 350e2f4

Browse files
Minimum spacing per column based on compression name length
1 parent 870c4d5 commit 350e2f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

log.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function displaySize(size: number | null, maxSize: number | null, maxWidth: numb
9292
* @param compression
9393
*/
9494
function maxLengthForCompression(report: Map<ItemConfig['path'], CompressionMap>, paths: Array<string>, compression: string): number {
95-
const reportedValueStrings: Array<number> = [];
95+
const reportedValueStrings: Array<number> = [compression.length];
9696

9797
for (const path of paths) {
9898
const value = report.get(path)?.get(compression);

0 commit comments

Comments
 (0)