Skip to content
Snippets Groups Projects

Display Cost Factored Storage Sizes on Project Usage Quotas Page

Merged Ammar Alakkad requested to merge 416097-use-cost-factored-storage-size-on-frontend into master
All threads resolved!
Files
7
@@ -4,6 +4,7 @@ import { sprintf } from '~/locale';
import { updateRepositorySize } from '~/api/projects_api';
import { numberToHumanSize } from '~/lib/utils/number_utils';
import SectionedPercentageBar from '~/usage_quotas/components/sectioned_percentage_bar.vue';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import {
ERROR_MESSAGE,
LEARN_MORE_LABEL,
@@ -32,6 +33,7 @@ export default {
ProjectStorageDetail,
SectionedPercentageBar,
},
mixins: [glFeatureFlagsMixin()],
inject: ['projectPath'],
apollo: {
project: {
@@ -150,6 +152,9 @@ export default {
});
},
},
created() {
console.log(this.glFeatures.displayCostFactoredStorageSizeOnProjectPages);
},
methods: {
clearError() {
this.error = '';
Loading