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

state.js « store « labels_select_vue « labels « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0185d5f88e1762f7250440ed04a21fe74f0890aa (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
27
28
29
30
export default () => ({
  // Initial Data
  labels: [],
  labelsFetched: false,
  selectedLabels: [],
  labelsListTitle: '',
  labelsCreateTitle: '',
  footerCreateLabelTitle: '',
  footerManageLabelTitle: '',
  dropdownButtonText: '',

  // Paths
  namespace: '',
  labelsFetchPath: '',
  labelsFilterBasePath: '',

  // UI Flags
  variant: '',
  allowLabelRemove: false,
  allowLabelCreate: false,
  allowLabelEdit: false,
  allowScopedLabels: false,
  allowMultiselect: false,
  showDropdownButton: false,
  showDropdownContents: false,
  showDropdownContentsCreateView: false,
  labelsFetchInProgress: false,
  labelCreateInProgress: false,
  selectedLabelsUpdated: false,
});