Add information about virgin and remaining points

This commit is contained in:
D. Berge
2021-05-17 20:19:16 +02:00
parent 08d33e293a
commit 57f4834da8

View File

@@ -120,6 +120,10 @@
</dougal-line-status>
</template>
<template v-slot:item.tba="{item, value}">
<span :class="!value && (item.na ? 'warning--text' : 'success--text')">{{ value }}</span>
</template>
<template v-slot:item.length="props">
<span>{{ Math.round(props.value) }} m</span>
</template>
@@ -204,7 +208,17 @@ export default {
},
{
value: "num_points",
text: "Num. points",
text: "Points",
align: "end"
},
{
value: "na",
text: "Virgin",
align: "end"
},
{
value: "tba",
text: "Remaining",
align: "end"
},
{