migrate dashboard:merge_requests to static bundle

This commit is contained in:
Mike Greiling 2018-02-02 16:15:19 -06:00
parent 99bc2a4a2d
commit 9bb3ff551c
No known key found for this signature in database
GPG key ID: 0303DF507FA67596
2 changed files with 2 additions and 7 deletions

View file

@ -53,11 +53,6 @@ var Dispatcher;
case 'projects:issues:show':
shortcut_handler = true;
break;
case 'dashboard:merge_requests':
import('./pages/dashboard/merge_requests')
.then(callDefault)
.catch(fail);
break;
case 'groups:issues':
import('./pages/groups/issues')
.then(callDefault)

View file

@ -1,7 +1,7 @@
import projectSelect from '~/project_select';
import initLegacyFilters from '~/init_legacy_filters';
export default () => {
document.addEventListener('DOMContentLoaded', () => {
projectSelect();
initLegacyFilters();
};
});