From f849f59b44f34006270ebe0c7a3cd45eaaa060f3 Mon Sep 17 00:00:00 2001 From: Fatih Acet Date: Mon, 26 Mar 2018 14:17:55 +0000 Subject: Merge branch 'bug/44103-ie11-compatibility' into 'master' Array.fill polyfill for IE 11 compatibility. Closes #44103 See merge request gitlab-org/gitlab-ce!17897 --- app/assets/javascripts/commons/polyfills.js | 1 + 1 file changed, 1 insertion(+) 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'; -- cgit v1.2.1