File tree 1 file changed +2
-2
lines changed
apps/web/src/services/cost-explorer/components
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -640,13 +640,13 @@ watch(
640
640
#tf-col-format =" {field , colIndex , values } "
641
641
>
642
642
<span v-if =" colIndex === 0" >Total</span >
643
- <span v-else-if =" tableState.showFormattedData
643
+ <span v-else-if =" tableState.showFormattedData && field.name !== 'usage_unit'
644
644
&& (!state.visibleGroupByItems.map(item => lowerCase(item.name)).includes(lowerCase(field.name))
645
645
&& !state.visibleGroupByItems.map(item => lowerCase(item.label)).includes(lowerCase(field.name)))"
646
646
>
647
647
{{ Array.isArray(values) && values.length > 0 ? numberFormatter(reduce(values), {notation: 'compact'}) : 0 }}
648
648
</span >
649
- <span v-else-if =" !tableState.showFormattedData
649
+ <span v-else-if =" !tableState.showFormattedData && field.name !== 'usage_unit'
650
650
&& (!state.visibleGroupByItems.map(item => lowerCase(item.name)).includes(lowerCase(field.name))
651
651
&& !state.visibleGroupByItems.map(item => lowerCase(item.label)).includes(lowerCase(field.name)))"
652
652
>
You can’t perform that action at this time.
0 commit comments