Skip to content

Commit

Permalink
Update ui/src/components/view/ListView.vue
Browse files Browse the repository at this point in the history
Co-authored-by: Fabricio Duarte <[email protected]>
  • Loading branch information
LayonRibeiro and winterhazel authored Nov 18, 2024
1 parent ce50867 commit 0442805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/view/ListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
<status :text="text ? text : ''" displayText />
</template>
<template v-if="column.key === 'cpunumber'">
<span>{{ record.serviceofferingdetails ? `${record.serviceofferingdetails.mincpunumber} - ${record.serviceofferingdetails.maxcpunumber}` : record.cpunumber }}</span>
<span>{{ record.serviceofferingdetails?.mincpunumber && record.serviceofferingdetails?.maxcpunumber ? `${record.serviceofferingdetails.mincpunumber} - ${record.serviceofferingdetails.maxcpunumber}` : record.cpunumber }}</span>
</template>
<template v-if="column.key === 'memory'">
<span>{{ record.serviceofferingdetails ? `${record.serviceofferingdetails.minmemory} - ${record.serviceofferingdetails.maxmemory}` : record.memory }}</span>
Expand Down

0 comments on commit 0442805

Please sign in to comment.