This commit is contained in:
nasir@endelospay.com 2024-06-11 01:42:10 +05:00
parent 3f081cee50
commit d6508b7201
2 changed files with 3 additions and 2 deletions

View File

@ -160,7 +160,7 @@ const close = () => {
:color="getStatusColor(item.status)"
density="comfortable"
>
{{ getStatusColor(item.status) }}
{{ item.status}}
</VChip>
</template>

View File

@ -156,11 +156,12 @@ const close = () => {
<!-- full name -->
<!-- status -->
<template #item.status="{ item }">
<VChip
:color="getStatusColor(item.status)"
density="comfortable"
>
{{ getStatusColor(item.status) }}
{{ item.status}}
</VChip>
</template>