Commit d51afa06 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'fix-search-project-in-boards-new-issue' into 'master'

use the property of name_with_namespace instead of name for the new issue form in boards

See merge request gitlab-org/gitlab-ee!14679
parents de399c18 95bd0b1a
......@@ -68,13 +68,15 @@ export default {
<li>
<a href='#' class='dropdown-menu-link' data-project-id="${
project.id
}" data-project-name="${project.name}">
${_.escape(project.name)}
}" data-project-name="${project.name}" data-project-name-with-namespace="${
project.name_with_namespace
}">
${_.escape(project.name_with_namespace)}
</a>
</li>
`;
},
text: project => project.name,
text: project => project.name_with_namespace,
});
},
};
......
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