summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/issues/index.js
blob: d149b307e7fca450a596cccd99dfa124f84b2cba (plain)
1
2
3
4
5
6
7
8
9
10
import projectSelect from '~/project_select';
import initFilteredSearch from '~/pages/search/init_filtered_search';
import { FILTERED_SEARCH } from '~/pages/constants';

document.addEventListener('DOMContentLoaded', () => {
  initFilteredSearch({
    page: FILTERED_SEARCH.ISSUES,
  });
  projectSelect();
});