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

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

export const METRIC_KEY_PREFIX = 'metric.';
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'),
  },
]);