summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/init_legacy_filters.js
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();
};