summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/issues/index.js
blob: 914f804fdd3b68a5f0681759e7395f695b4e2b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
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,
    isGroupDecendent: true,
  });
  projectSelect();
});