diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-07-13 13:20:03 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-12-13 17:09:28 +0100 |
| commit | 2f56f17ac72a9f75dc094c7c23ce50038d6aaa5d (patch) | |
| tree | 12a26c8cee4e6e656ea5060922397480e2ea9621 | |
| parent | 7543590074884fbe426555942c6de1902ab70f8e (diff) | |
| download | brokentalents-2f56f17ac72a9f75dc094c7c23ce50038d6aaa5d.tar.gz brokentalents-2f56f17ac72a9f75dc094c7c23ce50038d6aaa5d.zip | |
Highlights: Improve number and label UX
| -rw-r--r-- | src/Highlights.vue | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Highlights.vue b/src/Highlights.vue index ff40906..7b2c375 100644 --- a/src/Highlights.vue +++ b/src/Highlights.vue @@ -72,13 +72,12 @@ :entry="stats.topLegendaryWin" /> </div> - {{ stats.topBlitzPoints }} <div class="column" v-if="!!stats.topKillDeathPoints"> <talent-box class="is-dark notification" title="Soldier" type="Kill Death Difference" label="" - :value="stats.topKillDeathPoints.KillDeathPoints.toFixed(2)" + :value="'+' + stats.topKillDeathPoints.KillDeathPoints.toFixed(2)" :entry="stats.topKillDeathPoints" /> </div> @@ -94,9 +93,9 @@ <div class="column" v-if="!!stats.topBlitzPointsDelta"> <talent-box class="is-dark notification" title="Blitzkrieg" - type="Points Difference" + type="Blitz Points" label="" - :value="stats.topBlitzPointsDelta.BlitzPointsDelta.toFixed(2)" + :value="'+' + stats.topBlitzPointsDelta.BlitzPointsDelta.toFixed(2)" :entry="stats.topBlitzPointsDelta" /> </div> </div> |
