From dfde8dae57f7607a058f129dbd1dafdc1217e5db Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Mon, 25 May 2020 18:53:17 +0200 Subject: Add missing slash for alternative resources --- .../org/luxons/sevenwonders/ui/components/game/ProductionBar.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sw-ui/src/main/kotlin/org') diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ProductionBar.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ProductionBar.kt index a95da5ac..27a77ba6 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ProductionBar.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ProductionBar.kt @@ -97,7 +97,10 @@ private fun RBuilder.resourceChoice(types: Set, block: StyledDOMBu attrs { this.key = t.toString() } } if (i < types.indices.last) { - styledSpan { css { choiceSeparatorStyle() } } + styledSpan { + css { choiceSeparatorStyle() } + +"/" + } } } } -- cgit