Skip to content

Commit

Permalink
chore: merge master into develop after 2.0.dev316 version tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
admin-cloudforet committed Feb 13, 2025
2 parents 92c39da + eaec968 commit fe8097b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "2.0.0-dev315",
"version": "2.0.0-dev316",
"private": true,
"description": "Cloudforet Console Web Application",
"author": "Cloudforet",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -640,13 +640,13 @@ watch(
#tf-col-format="{field, colIndex, values}"
>
<span v-if="colIndex === 0">Total</span>
<span v-else-if="tableState.showFormattedData
<span v-else-if="tableState.showFormattedData && field.name !== 'usage_unit'
&& (!state.visibleGroupByItems.map(item => lowerCase(item.name)).includes(lowerCase(field.name))
&& !state.visibleGroupByItems.map(item => lowerCase(item.label)).includes(lowerCase(field.name)))"
>
{{ Array.isArray(values) && values.length > 0 ? numberFormatter(reduce(values), {notation: 'compact'}) : 0 }}
</span>
<span v-else-if="!tableState.showFormattedData
<span v-else-if="!tableState.showFormattedData && field.name !== 'usage_unit'
&& (!state.visibleGroupByItems.map(item => lowerCase(item.name)).includes(lowerCase(field.name))
&& !state.visibleGroupByItems.map(item => lowerCase(item.label)).includes(lowerCase(field.name)))"
>
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudforet-console",
"version": "2.0.0-dev315",
"version": "2.0.0-dev316",
"private": true,
"workspaces": [
"apps/*",
Expand Down

0 comments on commit fe8097b

Please sign in to comment.