Commit c2caaf08 authored by Nick Thomas's avatar Nick Thomas

Resolve JS conflicts

parent 774053a3
...@@ -110,16 +110,13 @@ class List { ...@@ -110,16 +110,13 @@ class List {
.then((resp) => { .then((resp) => {
const data = resp.json(); const data = resp.json();
issue.id = data.iid; issue.id = data.iid;
<<<<<<< HEAD
issue.milestone = data.milestone; issue.milestone = data.milestone;
=======
}) })
.then(() => { .then(() => {
if (this.issuesSize > 1) { if (this.issuesSize > 1) {
const moveBeforeIid = this.issues[1].id; const moveBeforeIid = this.issues[1].id;
gl.boardService.moveIssue(issue.id, null, null, null, moveBeforeIid); gl.boardService.moveIssue(issue.id, null, null, null, moveBeforeIid);
} }
>>>>>>> ce/master
}); });
} }
......
...@@ -11,11 +11,8 @@ function highlightChanges($elm) { ...@@ -11,11 +11,8 @@ function highlightChanges($elm) {
this.toggleSettings = this.toggleSettings.bind(this); this.toggleSettings = this.toggleSettings.bind(this);
this.$selects = $('.features select'); this.$selects = $('.features select');
this.$repoSelects = this.$selects.filter('.js-repo-select'); this.$repoSelects = this.$selects.filter('.js-repo-select');
<<<<<<< HEAD
this.$enableApprovers = $('.js-require-approvals-toggle'); this.$enableApprovers = $('.js-require-approvals-toggle');
=======
this.$projectSelects = this.$selects.not('.js-repo-select'); this.$projectSelects = this.$selects.not('.js-repo-select');
>>>>>>> ce/master
$('.project-edit-container').on('ajax:before', (function(_this) { $('.project-edit-container').on('ajax:before', (function(_this) {
return function() { return function() {
......
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