Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b3ec0ddc
Commit
b3ec0ddc
authored
Apr 15, 2021
by
Eulyeon Ko
Committed by
Simon Knox
Apr 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove epic filtered search bar from issue boards
parent
cedcd442
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
17 deletions
+2
-17
app/assets/javascripts/boards/index.js
app/assets/javascripts/boards/index.js
+2
-8
app/controllers/groups/boards_controller.rb
app/controllers/groups/boards_controller.rb
+0
-1
spec/frontend/fixtures/issues.rb
spec/frontend/fixtures/issues.rb
+0
-2
spec/spec_helper.rb
spec/spec_helper.rb
+0
-6
No files found.
app/assets/javascripts/boards/index.js
View file @
b3ec0ddc
...
...
@@ -162,15 +162,9 @@ export default () => {
eventHub
.
$off
(
'
initialBoardLoad
'
,
this
.
initialBoardLoad
);
},
mounted
()
{
if
(
!
gon
.
features
?.
boardsFilteredSearch
)
{
this
.
filterManager
=
new
FilteredSearchBoards
(
boardsStore
.
filter
,
true
,
boardsStore
.
cantEdit
,
);
this
.
filterManager
=
new
FilteredSearchBoards
(
boardsStore
.
filter
,
true
,
boardsStore
.
cantEdit
);
this
.
filterManager
.
setup
();
}
this
.
filterManager
.
setup
();
this
.
performSearch
();
...
...
app/controllers/groups/boards_controller.rb
View file @
b3ec0ddc
...
...
@@ -9,7 +9,6 @@ class Groups::BoardsController < Groups::ApplicationController
before_action
:assign_endpoint_vars
before_action
do
push_frontend_feature_flag
(
:graphql_board_lists
,
group
,
default_enabled:
false
)
push_frontend_feature_flag
(
:boards_filtered_search
,
group
)
push_frontend_feature_flag
(
:swimlanes_buffered_rendering
,
group
,
default_enabled: :yaml
)
end
...
...
spec/frontend/fixtures/issues.rb
View file @
b3ec0ddc
...
...
@@ -16,8 +16,6 @@ RSpec.describe Projects::IssuesController, '(JavaScript fixtures)', type: :contr
end
before
do
stub_feature_flags
(
boards_filtered_search:
false
)
project
.
add_maintainer
(
user
)
sign_in
(
user
)
end
...
...
spec/spec_helper.rb
View file @
b3ec0ddc
...
...
@@ -266,12 +266,6 @@ RSpec.configure do |config|
stub_feature_flags
(
unified_diff_components:
false
)
# Disable this feature flag as we iterate and
# refactor filtered search to use gitlab ui
# components to meet feature parody. More details found
# https://gitlab.com/groups/gitlab-org/-/epics/5501
stub_feature_flags
(
boards_filtered_search:
false
)
# The following `vue_issues_list` stub can be removed once the
# Vue issues page has feature parity with the current Haml page
stub_feature_flags
(
vue_issues_list:
false
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment