diff --git a/ui/puzzle/src/view/main.ts b/ui/puzzle/src/view/main.ts index 960e9006e4999..236daeb5e435b 100644 --- a/ui/puzzle/src/view/main.ts +++ b/ui/puzzle/src/view/main.ts @@ -144,10 +144,11 @@ function session(ctrl: PuzzleCtrl) { current = ctrl.data.puzzle.id; return h('div.puzzle__session', [ ...rounds.map(round => { - const rd = - round.ratingDiff && ctrl.opts.showRatings && round.ratingDiff > 0 - ? '+' + round.ratingDiff - : round.ratingDiff; + const rd = !ctrl.opts.showRatings + ? '' + : round.ratingDiff && round.ratingDiff > 0 + ? '+' + round.ratingDiff + : round.ratingDiff; return h( `a.result-${round.result}${rd ? '' : '.result-empty'}`, {