diff options
| author | Fatih Acet <acetfatih@gmail.com> | 2018-03-26 14:17:55 +0000 |
|---|---|---|
| committer | Filipa Lacerda <filipa@gitlab.com> | 2018-03-26 15:28:12 +0100 |
| commit | f849f59b44f34006270ebe0c7a3cd45eaaa060f3 (patch) | |
| tree | de5c45f84a490a0d51966a5389ba5641843683b5 | |
| parent | a27af7471731de29d53ee2ea1fa4be77b562a95c (diff) | |
| download | gitlab-ce-10-6-stable-patch-1.tar.gz | |
Merge branch 'bug/44103-ie11-compatibility' into 'master'10-6-stable-patch-1
Array.fill polyfill for IE 11 compatibility.
Closes #44103
See merge request gitlab-org/gitlab-ce!17897
| -rw-r--r-- | app/assets/javascripts/commons/polyfills.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/commons/polyfills.js b/app/assets/javascripts/commons/polyfills.js index 46232726510..d62d3c23654 100644 --- a/app/assets/javascripts/commons/polyfills.js +++ b/app/assets/javascripts/commons/polyfills.js @@ -1,4 +1,5 @@ // ECMAScript polyfills +import 'core-js/fn/array/fill'; import 'core-js/fn/array/find'; import 'core-js/fn/array/find-index'; import 'core-js/fn/array/from'; |
