diff options
author | Luke Bennett <lbennett@gitlab.com> | 2018-12-22 01:44:51 +0000 |
---|---|---|
committer | Luke Bennett <lbennett@gitlab.com> | 2018-12-22 02:03:28 +0000 |
commit | d0cc00f1c66277a9db3059597fc77e6bd1f5ec0d (patch) | |
tree | b504097dce9526490194214507d0996d52fe99bd | |
parent | 1cef634173afc9ae8c774c742c8959ce4f4762a4 (diff) | |
download | gitlab-ce-polyfill-object-values-11-4.tar.gz |
Fix IE11 issue from missing Object.values polyfillpolyfill-object-values-11-4
-rw-r--r-- | app/assets/javascripts/commons/polyfills.js | 1 | ||||
-rw-r--r-- | changelogs/unreleased/polyfill-object-values-11-4.yml | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/javascripts/commons/polyfills.js b/app/assets/javascripts/commons/polyfills.js index 539d0d29e0d..bffc025ced3 100644 --- a/app/assets/javascripts/commons/polyfills.js +++ b/app/assets/javascripts/commons/polyfills.js @@ -5,6 +5,7 @@ import 'core-js/fn/array/find-index'; 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/promise'; import 'core-js/fn/string/code-point-at'; import 'core-js/fn/string/from-code-point'; diff --git a/changelogs/unreleased/polyfill-object-values-11-4.yml b/changelogs/unreleased/polyfill-object-values-11-4.yml new file mode 100644 index 00000000000..5cdb2c1b21b --- /dev/null +++ b/changelogs/unreleased/polyfill-object-values-11-4.yml @@ -0,0 +1,5 @@ +--- +title: Improve IE11 compatability with Object.values polyfill +merge_request: 24003 +author: +type: fixed |