We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07e30e5 + fecdea5 commit 6d94e32Copy full SHA for 6d94e32
src/components/spotlight/SpotlightTable.vue
@@ -78,10 +78,15 @@
78
<b-table-column
79
field="rank"
80
:label="$t('spotlight.score')"
81
- v-slot="props"
82
sortable
+ numeric
83
>
84
- <template v-if="!isLoading">{{ Math.ceil(props.row.rank * 100) / 100 }}</template>
+ <template v-slot:header="{column}">
85
+ <b-tooltip label="sold * (unique / total)" append-to-body dashed>
86
+ {{column.label}}
87
+ </b-tooltip>
88
+ </template>
89
+ <template v-slot="props" v-if="!isLoading">{{ Math.ceil(props.row.rank * 100) / 100 }}</template>
90
<b-skeleton :active="isLoading"> </b-skeleton>
91
</b-table-column>
92
0 commit comments