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

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

export const ENVIRONMENT_QUERY_LIMIT = 30;

export const ALL_ENVIRONMENTS_OPTION = {
  type: '*',
  text: __('All (default)'),
};

export const NO_ENVIRONMENT_OPTION = {
  // TODO: This is a placeholder value. It will be replaced with the actual value used once it's implemented on the backend
  type: 'Not applicable',
  text: __('Not applicable'),
};