Skip to content

Commit

Permalink
change bandwidth text to data transfer. hide storage metrics. (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paterick authored Oct 20, 2023
1 parent f124476 commit 538bdb5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/components/HAppCardUsage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ const items = computed(() => {
unit: t('$.cpu'),
isDisabled: true
},
{
value: presentBytes(props.happ.storage),
unit: t('$.storage'),
isDisabled: true
},
{
value: presentBytes(props.happ.usage?.bandwidth),
unit: t('$.bandwidth'),
unit: t('$.data_transfer'),
isDisabled: false
}
},
// {
// value: presentBytes(props.happ.storage),
// unit: t('$.storage'),
// isDisabled: true
// }
]
})
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const translations = {
$: {
app_version: '{app} version {version}',
bandwidth: 'Bandwidth',
data_transfer: 'Data Transfer',
cancel: 'Cancel',
confirm: 'Confirm',
continue: 'Continue',
Expand Down

0 comments on commit 538bdb5

Please sign in to comment.