Commit 56ae4a9a authored by Filipa Lacerda's avatar Filipa Lacerda

Fix conflicts for app/assets/javascripts/dispatcher.js

parent 1eb05471
...@@ -7,12 +7,6 @@ ...@@ -7,12 +7,6 @@
/* global IssuableForm */ /* global IssuableForm */
/* global LabelsSelect */ /* global LabelsSelect */
/* global MilestoneSelect */ /* global MilestoneSelect */
<<<<<<< HEAD
/* global Commit */
/* global CommitsList */
/* global NewCommitForm */
=======
>>>>>>> ce-com/master
/* global NewBranchForm */ /* global NewBranchForm */
/* global NotificationsForm */ /* global NotificationsForm */
/* global NotificationsDropdown */ /* global NotificationsDropdown */
...@@ -590,7 +584,11 @@ import initGroupAnalytics from './init_group_analytics'; ...@@ -590,7 +584,11 @@ import initGroupAnalytics from './init_group_analytics';
case 'admin:impersonation_tokens:index': case 'admin:impersonation_tokens:index':
new gl.DueDateSelectors(); new gl.DueDateSelectors();
break; break;
<<<<<<< HEAD case 'projects:clusters:show':
import(/* webpackChunkName: "clusters" */ './clusters')
.then(cluster => new cluster.default()) // eslint-disable-line new-cap
.catch(() => {});
break;
case 'admin:licenses:new': case 'admin:licenses:new':
const $licenseFile = $('.license-file'); const $licenseFile = $('.license-file');
const $licenseKey = $('.license-key'); const $licenseKey = $('.license-key');
...@@ -608,14 +606,6 @@ import initGroupAnalytics from './init_group_analytics'; ...@@ -608,14 +606,6 @@ import initGroupAnalytics from './init_group_analytics';
case 'groups:analytics:show': case 'groups:analytics:show':
initGroupAnalytics(); initGroupAnalytics();
break; break;
=======
case 'projects:clusters:show':
import(/* webpackChunkName: "clusters" */ './clusters')
.then(cluster => new cluster.default()) // eslint-disable-line new-cap
.catch(() => {});
break;
>>>>>>> ce-com/master
} }
switch (path[0]) { switch (path[0]) {
case 'sessions': case 'sessions':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment