Skip to content

Commit

Permalink
fix: compilation progress being cut-off in server UI
Browse files Browse the repository at this point in the history
  • Loading branch information
zamotany authored Jul 22, 2019
1 parent 64802a6 commit 44177db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/haul-core/src/server/UserInterface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class UserInterface {

platforms.forEach((platform, index) => {
this.compilations[platform] = {
width: Math.min(110, this.terminal.width) - (platformNameLength + 20),
width: Math.min(110, this.terminal.width) - (platformNameLength + 22),
value: 0,
title: `${' '.repeat(
platformNameLength - platform.length
Expand Down

0 comments on commit 44177db

Please sign in to comment.