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.
1 parent 2365e97 commit fecdea5Copy full SHA for fecdea5
src/components/spotlight/SpotlightTable.vue
@@ -77,10 +77,15 @@
77
<b-table-column
78
field="rank"
79
:label="$t('spotlight.score')"
80
- v-slot="props"
81
sortable
+ numeric
82
>
83
- <template v-if="!isLoading">{{ Math.ceil(props.row.rank * 100) / 100 }}</template>
+ <template v-slot:header="{column}">
84
+ <b-tooltip label="sold * (unique / total)" append-to-body dashed>
85
+ {{column.label}}
86
+ </b-tooltip>
87
+ </template>
88
+ <template v-slot="props" v-if="!isLoading">{{ Math.ceil(props.row.rank * 100) / 100 }}</template>
89
<b-skeleton :active="isLoading"> </b-skeleton>
90
</b-table-column>
91
0 commit comments