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
2878ce2f
Commit
2878ce2f
authored
Feb 08, 2022
by
Donald Cook
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Just need to check if array
parent
a745c3c0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
14 deletions
+7
-14
ee/app/assets/javascripts/roadmap/mixins/filtered_search_mixin.js
...ssets/javascripts/roadmap/mixins/filtered_search_mixin.js
+7
-14
No files found.
ee/app/assets/javascripts/roadmap/mixins/filtered_search_mixin.js
View file @
2878ce2f
...
...
@@ -219,8 +219,7 @@ export default {
});
}
if
(
labelName
?.
length
)
{
if
(
Array
.
isArray
(
labelName
))
{
if
(
labelName
?.
length
&&
Array
.
isArray
(
labelName
))
{
filteredSearchValue
.
push
(
...
labelName
.
map
((
label
)
=>
({
type
:
'
label_name
'
,
...
...
@@ -228,12 +227,6 @@ export default {
})),
);
}
}
else
{
filteredSearchValue
.
push
({
type
:
'
label_name
'
,
value
:
{
data
:
labelName
,
operator
:
OPERATOR_IS
},
});
}
if
(
notLabelName
?.
length
)
{
filteredSearchValue
.
push
(
...
notLabelName
.
map
((
label
)
=>
({
...
...
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