Skip to content
Snippets Groups Projects
Commit 3854d287 authored by Felipe Artur's avatar Felipe Artur
Browse files

Fix issues without links when added from boards new issue modal

parent d8dd75ca
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -113,6 +113,8 @@ class List {
issue.id = data.id;
issue.iid = data.iid;
issue.project = data.project;
issue.path = data.real_path;
issue.referencePath = data.reference_path;
 
if (this.issuesSize > 1) {
const moveBeforeId = this.issues[1].id;
Loading
Loading
Loading
Loading
@@ -63,6 +63,13 @@ describe 'Issue Boards new issue', :js do
page.within(first('.board .issue-count-badge-count')) do
expect(page).to have_content('1')
end
page.within(first('.card')) do
issue = project.issues.find_by_title('bug')
expect(page).to have_content(issue.to_reference)
expect(page).to have_link(issue.title, href: issue_path(issue))
end
end
 
it 'shows sidebar when creating new issue' do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment