Skip to content

Commit

Permalink
Adding No Data Available in case of no billing available (#3750)
Browse files Browse the repository at this point in the history
  • Loading branch information
maayarosama authored Dec 16, 2024
1 parent 6fb2ab7 commit c3bfded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground/src/components/vm_deployment_table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
</template>

<template #[`item.billing`]="{ item }">
{{ item.billing }}
{{ item.billing || "No Data Available" }}
</template>
<template #[`item.created`]="{ item }">
{{ toHumanDate(item.created) }}
Expand Down

0 comments on commit c3bfded

Please sign in to comment.