diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-07-25 20:45:20 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-12-13 17:09:34 +0100 |
| commit | 68b9da012f836d39a6db8c4ccd2f68d1531a5c81 (patch) | |
| tree | 00627414251a76423ad2f9907ffd67a8c047dbb0 | |
| parent | b3bfa59817505347148c11f6d96ad0d492d6df1c (diff) | |
| download | brokentalents-68b9da012f836d39a6db8c4ccd2f68d1531a5c81.tar.gz brokentalents-68b9da012f836d39a6db8c4ccd2f68d1531a5c81.zip | |
Summaries: Remove average win rate, fix tooltip
| -rw-r--r-- | src/Summaries.vue | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/Summaries.vue b/src/Summaries.vue index cc20fb8..51bd277 100644 --- a/src/Summaries.vue +++ b/src/Summaries.vue @@ -1,21 +1,17 @@ <template> <b-table :data="talentSummaries" :mobile-cards="false"> - <template slot-scope="props"> - <template slot-scope="props" slot="header"> - <b-tooltip :active="!!props.column.meta" :label="props.column.meta || ''" position="is-bottom" dashed> - {{ props.column.label }} - </b-tooltip> - </template> + <template slot-scope="props" slot="header"> + <b-tooltip :active="!!props.column.meta" :label="props.column.meta || ''" position="is-bottom" dashed> + {{ props.column.label }} + </b-tooltip> + </template> + <template slot-scope="props"> <b-table-column field="Rarity" label="Rarity"> {{ props.row.Rarity }} </b-table-column> - <b-table-column field="TotalWinner" label="Win Rate" sortable numeric> - {{ (100 * props.row.TotalWinner / props.row._Count).toFixed(2) }}% - </b-table-column> - <b-table-column field="TalentWinrateBase" label="Level 1 Win Rate" meta="Estimated." sortable numeric> {{ (100 * props.row.TalentWinrateBase / props.row._Count).toFixed(2) }}% </b-table-column> |
