summaryrefslogtreecommitdiff
path: root/sw-ui
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-25 18:53:17 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-25 18:53:17 +0200
commitdfde8dae57f7607a058f129dbd1dafdc1217e5db (patch)
treee32dabcecf66ee0cd05a448c79aefa261bb84e99 /sw-ui
parentRe-enable heroku deployment from travis CI (diff)
downloadseven-wonders-dfde8dae57f7607a058f129dbd1dafdc1217e5db.tar.gz
seven-wonders-dfde8dae57f7607a058f129dbd1dafdc1217e5db.tar.bz2
seven-wonders-dfde8dae57f7607a058f129dbd1dafdc1217e5db.zip
Add missing slash for alternative resources
Diffstat (limited to 'sw-ui')
-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