Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 5, 2021
1 parent 17c6680 commit 2c6dd63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/report/reporters/boxplot/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ const getSingleMinMaxWidth = function (quantiles, statName) {
}

const getEmptyCombination = function (combinationTitles, mini) {
return mini ? `${combinationTitles}\n` : `${combinationTitles}\n\n`
const labelsLine = mini ? '' : '\n'
return `${combinationTitles}\n${labelsLine}`
}

const getPositions = function ({ quantiles, minAll, maxAll, contentWidth }) {
Expand Down

0 comments on commit 2c6dd63

Please sign in to comment.