diff options
-rw-r--r-- | app/assets/javascripts/dispatcher.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/dispatcher.js b/app/assets/javascripts/dispatcher.js index d983e206030..6172333c569 100644 --- a/app/assets/javascripts/dispatcher.js +++ b/app/assets/javascripts/dispatcher.js @@ -198,7 +198,9 @@ import Activities from './activities'; new Sidebar(); break; case 'dashboard:milestones:show': - import('./pages/dashboard/milestones/show').then(callDefault).catch(fail); + import('./pages/dashboard/milestones/show') + .then(callDefault) + .catch(fail); break; case 'dashboard:issues': case 'dashboard:merge_requests': |