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

constants.js « 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: 15462b519e1cec100d1ef71e88e46fd8d346e260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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: __('Name'),
  },
  {
    orderBy: LIST_KEY_CREATED_AT,
    label: __('Created at'),
  },
]);

export const EMPTY_STATE_SVG = '/assets/illustrations/empty-state/empty-dag-md.svg';

export const FEATURE_NAME = s__('MlExperimentTracking|Machine learning experiment tracking');

export const FEATURE_FEEDBACK_ISSUE = 'https://gitlab.com/gitlab-org/gitlab/-/issues/381660';