Add ‘groups’ column to ProjectList table

This commit is contained in:
D. Berge
2023-10-29 19:33:52 +01:00
parent 2131cdf0c1
commit be904d8a00

View File

@@ -23,6 +23,13 @@
</template>
</template>
<template v-slot:item.groups="{item, value}">
<v-chip v-for="group in value"
label
small
>{{ group }}</v-chip>
</template>
<template v-slot:item.shots="{item}">
{{ item.total ? (item.prime + item.other) : "" }}
</template>
@@ -118,6 +125,10 @@ export default {
value: "name",
text: "Name"
},
{
value: "groups",
text: "Groups"
},
{
value: "lines",
text: "Lines"