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

constants.js « reports « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 807ecb1039efe335238ad7fdf95e993542763dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const fieldTypes = {
  codeBock: 'codeBlock',
  link: 'link',
  miliseconds: 'miliseconds',
  text: 'text',
};

export const LOADING = 'LOADING';
export const ERROR = 'ERROR';
export const SUCCESS = 'SUCCESS';

export const STATUS_FAILED = 'failed';
export const STATUS_SUCCESS = 'success';
export const ICON_WARNING = 'warning';
export const ICON_SUCCESS = 'success';
export const ICON_NOTFOUND = 'notfound';