Skip to content
Snippets Groups Projects
Commit 091d21d5 authored by Victor Wu's avatar Victor Wu
Browse files

Fix typo: seach to search

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