Skip to content

Commit

Permalink
ofmcc-6328 - minor UI change
Browse files Browse the repository at this point in the history
  • Loading branch information
vietle-cgi committed Oct 30, 2024
1 parent a40430b commit c87bfee
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
:mobile="null"
mobile-breakpoint="md"
class="soft-outline">
<template #no-data>Your selected facility have no submitted requests.</template>
<template #no-data>The selected facility has not submitted a funding re-allocation request.</template>
<template #[`item.date`]="{ item }">
{{ format.formatDate(item?.date) }}
</template>
<template #[`item.amount`]="{ item }">$ {{ format.formatDecimalNumber(item?.amount) }}</template>
<template #[`item.statusCode`]="{ item }">
<span :class="getStatusClass(item?.statusCode)">{{ item?.statusName }}</span>
<div class="min-width-column">
<span :class="getStatusClass(item?.statusCode)">{{ item?.statusName }}</span>
</div>
</template>
</v-data-table>
</v-skeleton-loader>
Expand Down Expand Up @@ -74,3 +76,8 @@ export default {
},
}
</script>
<style scoped>
.min-width-column {
min-width: 105px;
}
</style>

0 comments on commit c87bfee

Please sign in to comment.