diff --git a/web/satellite/vuetify-poc/src/components/dialogs/BucketDetailsDialog.vue b/web/satellite/vuetify-poc/src/components/dialogs/BucketDetailsDialog.vue index 832e2f8d0..369cb428e 100644 --- a/web/satellite/vuetify-poc/src/components/dialogs/BucketDetailsDialog.vue +++ b/web/satellite/vuetify-poc/src/components/dialogs/BucketDetailsDialog.vue @@ -12,7 +12,7 @@ @@ -34,7 +34,7 @@

Name

@@ -43,25 +43,25 @@

Objects

-

{{ bucket.objectCount }}

+

{{ bucket.objectCount.toLocaleString() }}

Segments

-

{{ bucket.segmentCount }}

+

{{ bucket.segmentCount.toLocaleString() }}

Date Created

@@ -70,7 +70,7 @@

Last Updated

diff --git a/web/satellite/vuetify-poc/src/components/dialogs/EditProjectLimitDialog.vue b/web/satellite/vuetify-poc/src/components/dialogs/EditProjectLimitDialog.vue index 97424c2be..06a0c727a 100644 --- a/web/satellite/vuetify-poc/src/components/dialogs/EditProjectLimitDialog.vue +++ b/web/satellite/vuetify-poc/src/components/dialogs/EditProjectLimitDialog.vue @@ -224,7 +224,7 @@ const availableUsage = computed(() => { * Returns the maximum amount of active measurement units that the usage limit can be set to. */ const availableUsageFormatted = computed(() => { - return decimalShift((availableUsage.value / Memory[activeMeasurement.value]).toFixed(2), 0); + return decimalShift((availableUsage.value / Memory[activeMeasurement.value]).toLocaleString(undefined, { maximumFractionDigits: 2 }), 0); }); /** diff --git a/web/satellite/vuetify-poc/src/views/Dashboard.vue b/web/satellite/vuetify-poc/src/views/Dashboard.vue index 48fd78e74..e9739d92f 100644 --- a/web/satellite/vuetify-poc/src/views/Dashboard.vue +++ b/web/satellite/vuetify-poc/src/views/Dashboard.vue @@ -74,7 +74,7 @@ - +