Commit 535fa7d8 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'fix-boards-search-typo' into 'master'

Fix boards search typo

See merge request !8370
parents f9a49d09 091d21d5
......@@ -73,7 +73,7 @@ $(() => {
});
gl.IssueBoardsSearch = new Vue({
el: '#js-boards-seach',
el: '#js-boards-search',
data: {
filters: Store.state.filters
},
......
......@@ -35,7 +35,7 @@
.pull-right
- if boards_page
#js-boards-seach.issue-boards-search
#js-boards-search.issue-boards-search
%input.pull-left.form-control{ type: "search", placeholder: "Filter by name...", "v-model" => "filters.search", "debounce" => "250" }
- if can?(current_user, :admin_list, @project)
.dropdown.pull-right
......
---
title: 'Fix typo: seach to search'
merge_request: 8370
author:
......@@ -109,7 +109,7 @@ describe 'Issue Boards', feature: true, js: true do
end
it 'search backlog list' do
page.within('#js-boards-seach') do
page.within('#js-boards-search') do
find('.form-control').set(issue1.title)
end
......@@ -122,7 +122,7 @@ describe 'Issue Boards', feature: true, js: true do
end
it 'search done list' do
page.within('#js-boards-seach') do
page.within('#js-boards-search') do
find('.form-control').set(issue8.title)
end
......@@ -135,7 +135,7 @@ describe 'Issue Boards', feature: true, js: true do
end
it 'search list' do
page.within('#js-boards-seach') do
page.within('#js-boards-search') do
find('.form-control').set(issue5.title)
end
......
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