diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-25 18:53:17 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-25 18:53:17 +0200 |
commit | dfde8dae57f7607a058f129dbd1dafdc1217e5db (patch) | |
tree | e32dabcecf66ee0cd05a448c79aefa261bb84e99 /sw-ui | |
parent | Re-enable heroku deployment from travis CI (diff) | |
download | seven-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.kt | 5 |
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() } + +"/" + } } } } |