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: 1211c2c802cda62830a27ea0447223ffd64832b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* eslint-disable no-new */
/* global LabelsSelect */
/* global MilestoneSelect */
/* global IssueStatusSelect */
/* global SubscriptionSelect */

import UsersSelect from './users_select';

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