Skip to content

Commit

Permalink
chore: fix award graphic
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-borriello00 committed Oct 16, 2023
1 parent 0ca6bbd commit 890cf37
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ object LeftTabComponent:
children <-- gameViewModel.currentAwards.map(_.toSeq).split(_._1) { (award, opt, _) =>
li(
award.toDisplayable,
opt._2.map((player, score) => s" ($player: $score)").getOrElse("Nobody Yet")
": ",
opt._2.map((player, score) => s"($player: $score)").getOrElse("Nobody Yet")
)
}
)
Expand Down

0 comments on commit 890cf37

Please sign in to comment.