Fix build stats display

This commit is contained in:
Dan Abramov
2018-02-10 13:36:50 +00:00
parent 467b1034ce
commit f07dd45b75

View File

@@ -78,7 +78,7 @@ function generateResultsArray(current, prevResults) {
function printResults() {
const table = new Table({
head: resultsHeaders.map(chalk.gray.yellow),
head: resultsHeaders.map(label => chalk.gray.yellow(label)),
});
const results = generateResultsArray(currentBuildResults, prevBuildResults);