summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ProductionBar.kt5
1 files changed, 4 insertions, 1 deletions
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<ResourceType>, block: StyledDOMBu
attrs { this.key = t.toString() }
}
if (i < types.indices.last) {
- styledSpan { css { choiceSeparatorStyle() } }
+ styledSpan {
+ css { choiceSeparatorStyle() }
+ +"/"
+ }
}
}
}
bgstack15