Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/admin/users/components/users_table.vue')
-rw-r--r--app/assets/javascripts/admin/users/components/users_table.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/assets/javascripts/admin/users/components/users_table.vue b/app/assets/javascripts/admin/users/components/users_table.vue
index ede5c26e487..b4b84594276 100644
--- a/app/assets/javascripts/admin/users/components/users_table.vue
+++ b/app/assets/javascripts/admin/users/components/users_table.vue
@@ -2,7 +2,7 @@
import { GlSkeletonLoader, GlTable } from '@gitlab/ui';
import createFlash from '~/flash';
import { convertNodeIdsFromGraphQLIds } from '~/graphql_shared/utils';
-import { thWidthClass } from '~/lib/utils/table_utility';
+import { thWidthPercent } from '~/lib/utils/table_utility';
import { s__, __ } from '~/locale';
import UserDate from '~/vue_shared/components/user_date.vue';
import getUsersGroupCountsQuery from '../graphql/queries/get_users_group_counts.query.graphql';
@@ -70,32 +70,32 @@ export default {
{
key: 'name',
label: __('Name'),
- thClass: thWidthClass(40),
+ thClass: thWidthPercent(40),
},
{
key: 'projectsCount',
label: __('Projects'),
- thClass: thWidthClass(10),
+ thClass: thWidthPercent(10),
},
{
key: 'groupCount',
label: __('Groups'),
- thClass: thWidthClass(10),
+ thClass: thWidthPercent(10),
},
{
key: 'createdAt',
label: __('Created on'),
- thClass: thWidthClass(15),
+ thClass: thWidthPercent(15),
},
{
key: 'lastActivityOn',
label: __('Last activity'),
- thClass: thWidthClass(15),
+ thClass: thWidthPercent(15),
},
{
key: 'settings',
label: '',
- thClass: thWidthClass(10),
+ thClass: thWidthPercent(10),
},
],
};