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

data.js « label_filter « components « sidebar « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 654357da902683290f63c1d87ef40a23a8167640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { __ } from '~/locale';

export const FIRST_DROPDOWN_INDEX = 0;

export const SEARCH_BOX_INDEX = 0;

export const SEARCH_INPUT_DESCRIPTION = 'label-search-input-description';

export const SEARCH_RESULTS_DESCRIPTION = 'label-search-results-description';

const header = __('Labels');

const scopes = {
  ISSUES: 'issues',
};

const filterParam = 'labels';

export const labelFilterData = {
  header,
  scopes,
  filterParam,
};