Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!1385
Prepare release 3.2.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Prepare release 3.2.0
release/3.2.0
into
stable-3.2
Overview
4
Commits
42
Pipelines
6
Changes
1
All threads resolved!
Hide all comments
Merged
Jonathan Weth
requested to merge
release/3.2.0
into
stable-3.2
1 year ago
Overview
4
Commits
42
Pipelines
6
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Viewing commit
9350492e
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
9350492e
Check if array is indeed an array in sidenav comparator
· 9350492e
Hangzhi Yu
authored
1 year ago
(cherry picked from commit
0154cebc
)
aleksis/core/frontend/components/app/SideNav.vue
+
1
−
1
Options
@@ -144,7 +144,7 @@ export default {
},
methods
:
{
comparator
(
array
,
value
)
{
return
array
&&
array
.
includes
(
value
);
return
Array
.
isArray
(
array
)
&&
array
.
includes
(
value
);
},
},
};
Loading