diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-29 23:11:26 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-29 23:11:26 +0000 |
commit | ffc23157029c14086bd19e4c1c9f7fcf6092c0bd (patch) | |
tree | b0463e8f314bd2ae43640135142f9fea8495295c /app | |
parent | bbdea2d94d2d87b366fe8e023dcc76c78cfe2375 (diff) | |
download | gitlab-ce-ffc23157029c14086bd19e4c1c9f7fcf6092c0bd.tar.gz |
Add latest changes from gitlab-org/gitlab@13-11-stable-ee
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/pages/admin/application_settings/integrations/index.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/assets/javascripts/pages/admin/application_settings/integrations/index.js b/app/assets/javascripts/pages/admin/application_settings/integrations/index.js index 2e61eedd185..f318b6f62d5 100644 --- a/app/assets/javascripts/pages/admin/application_settings/integrations/index.js +++ b/app/assets/javascripts/pages/admin/application_settings/integrations/index.js @@ -1,6 +1,8 @@ +import initIntegrationsList from '~/integrations/index'; import PersistentUserCallout from '~/persistent_user_callout'; -document.addEventListener('DOMContentLoaded', () => { - const callout = document.querySelector('.js-admin-integrations-moved'); - PersistentUserCallout.factory(callout); -}); +const callout = document.querySelector('.js-admin-integrations-moved'); + +PersistentUserCallout.factory(callout); + +initIntegrationsList(); |