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

constants.js « graph « components « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e650a48bc2af0002dde17c9b644b3f475f238fe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export const DOWNSTREAM = 'downstream';
export const MAIN = 'main';
export const UPSTREAM = 'upstream';

/*
  this value is based on the gl-pipeline-job-width class
  plus some extra for the margins
*/
export const ONE_COL_WIDTH = 180;

export const STAGE_VIEW = 'stage';
export const LAYER_VIEW = 'layer';

export const SKIP_RETRY_MODAL_KEY = 'skip_retry_modal';
export const VIEW_TYPE_KEY = 'pipeline_graph_view_type';

export const SINGLE_JOB = 'single_job';
export const JOB_DROPDOWN = 'job_dropdown';

export const BUILD_KIND = 'BUILD';
export const BRIDGE_KIND = 'BRIDGE';

export const ACTION_FAILURE = 'action_failure';
export const IID_FAILURE = 'missing_iid';

export const RETRY_ACTION_TITLE = 'Retry';