Skip to content

Commit 1662800

Browse files
committed
making the column width for : also dynamic
1 parent b485830 commit 1662800

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/helpers/sync/syncSpecsLogs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ let getTableConfig = () => {
3434
return {
3535
border: getBorderConfig(),
3636
columns: {
37-
1: {alignment: 'center', width: 1},
38-
2: {alignment: 'left', width: Math.floor(terminalWidth * 0.8)}
37+
1: {alignment: 'center', width: Math.ceil(terminalWidth * 0.01)},
38+
2: {alignment: 'left', width: Math.floor(terminalWidth * 0.75)}
3939
},
4040
columnDefault: {
4141
width: Math.floor(terminalWidth * 0.2),

0 commit comments

Comments
 (0)