Commit 96fe611a authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch 'justin_ho-fix-missing-label-filter-param-in-issuable-list-apps' into 'master'

Fix labelFilterParam value in issuable_list_root

See merge request gitlab-org/gitlab!65949
parents 144c54e2 efe1815b
......@@ -134,7 +134,7 @@ export default {
labelFilterParam: {
type: String,
required: false,
default: null,
default: undefined,
},
isManualOrdering: {
type: Boolean,
......
......@@ -76,6 +76,7 @@ RSpec.describe 'Test Cases', :js do
page.within('.issuable-list-container .issuable-list li.issue', match: :first) do
expect(page.find('.issue-title')).to have_content(test_case1.title)
expect(page.find('.issuable-reference')).to have_content("##{test_case1.iid}")
expect(page.find('.issuable-info')).to have_link(label.title, href: "?label_name[]=#{label.title}")
expect(page.find('.issuable-authored')).to have_content('created 5 days ago by')
expect(page.find('.author')).to have_content(user.name)
expect(page.find('div.issuable-updated-at')).to have_content('updated 2 days ago')
......
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