Commit 0787f417 authored by Rémy Coutable's avatar Rémy Coutable

Fix conflict in app/assets/javascripts/project_select.js

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 23596a1b
...@@ -103,16 +103,11 @@ import ProjectSelectComboButton from './project_select_combo_button'; ...@@ -103,16 +103,11 @@ import ProjectSelectComboButton from './project_select_combo_button';
} }
}; };
})(this), })(this),
<<<<<<< HEAD
id: function (project) {
return project[idAttribute];
=======
id: function(project) { id: function(project) {
return JSON.stringify({ return JSON.stringify({
name: project.name, name: project.name,
url: project.web_url, url: project.web_url,
}); });
>>>>>>> upstream/master
}, },
text: function (project) { text: function (project) {
return project.name_with_namespace || project.name; return project.name_with_namespace || project.name;
......
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