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

init_legacy_filters.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b2657215817c607ce2b460906e96f6b7b1587ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable no-new */
import LabelsSelect from './labels_select';
/* global MilestoneSelect */
/* global SubscriptionSelect */

import UsersSelect from './users_select';
import issueStatusSelect from './issue_status_select';

export default () => {
  new UsersSelect();
  new LabelsSelect();
  new MilestoneSelect();
  issueStatusSelect();
  new SubscriptionSelect();
};