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
8984e608
Commit
8984e608
authored
May 27, 2019
by
Paul Gascou-Vaillancourt
Committed by
Kushal Pandya
May 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix security dashboard errors on IE11
parent
f60ebd9a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
app/assets/javascripts/commons/polyfills.js
app/assets/javascripts/commons/polyfills.js
+1
-0
ee/app/assets/javascripts/security_dashboard/store/modules/filters/getters.js
...ripts/security_dashboard/store/modules/filters/getters.js
+1
-1
ee/changelogs/unreleased/ie11-fix-security-dashboard.yml
ee/changelogs/unreleased/ie11-fix-security-dashboard.yml
+5
-0
No files found.
app/assets/javascripts/commons/polyfills.js
View file @
8984e608
...
...
@@ -6,6 +6,7 @@ import 'core-js/fn/array/from';
import
'
core-js/fn/array/includes
'
;
import
'
core-js/fn/object/assign
'
;
import
'
core-js/fn/object/values
'
;
import
'
core-js/fn/object/entries
'
;
import
'
core-js/fn/promise
'
;
import
'
core-js/fn/promise/finally
'
;
import
'
core-js/fn/string/code-point-at
'
;
...
...
ee/app/assets/javascripts/security_dashboard/store/modules/filters/getters.js
View file @
8984e608
...
...
@@ -28,7 +28,7 @@ export const getSelectedOptionNames = (state, getters) => filterId => {
*/
export
const
activeFilters
=
state
=>
state
.
filters
.
reduce
((
acc
,
filter
)
=>
{
acc
[
filter
.
id
]
=
[...
filter
.
selection
].
filter
(
option
=>
option
!==
'
all
'
);
acc
[
filter
.
id
]
=
[...
Array
.
from
(
filter
.
selection
)
].
filter
(
option
=>
option
!==
'
all
'
);
return
acc
;
},
{});
...
...
ee/changelogs/unreleased/ie11-fix-security-dashboard.yml
0 → 100644
View file @
8984e608
---
title
:
Fix security dashboard errors on IE11
merge_request
:
13319
author
:
type
:
fixed
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