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

constants.js « model_registry « ml « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10c21ec4f122fbd4d35c6889541e34c938e7b79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { s__ } from '~/locale';

export const LIST_KEY_CREATED_AT = 'created_at';
export const BASE_SORT_FIELDS = Object.freeze([
  {
    orderBy: 'name',
    label: s__('MlExperimentTracking|Name'),
  },
  {
    orderBy: LIST_KEY_CREATED_AT,
    label: s__('MlExperimentTracking|Created at'),
  },
]);