diff options
author | kushalpandya <kushal@gitlab.com> | 2017-07-19 18:14:50 +0530 |
---|---|---|
committer | kushalpandya <kushal@gitlab.com> | 2017-07-19 18:14:50 +0530 |
commit | 11f9b0e77cdcada9f51fdf10a2677ee63d4d0d70 (patch) | |
tree | 5ebea2acf8e63fc748fbc133d2bbcd418213650d /app/assets/javascripts/protected_branches | |
parent | 55e46dfdd7d50c9f02bbdf6064c89c18035c2779 (diff) | |
download | gitlab-ce-11f9b0e77cdcada9f51fdf10a2677ee63d4d0d70.tar.gz |
Export only used classes
Diffstat (limited to 'app/assets/javascripts/protected_branches')
-rw-r--r-- | app/assets/javascripts/protected_branches/index.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/assets/javascripts/protected_branches/index.js b/app/assets/javascripts/protected_branches/index.js index 874d70a1431..f4744327402 100644 --- a/app/assets/javascripts/protected_branches/index.js +++ b/app/assets/javascripts/protected_branches/index.js @@ -1,5 +1,2 @@ -import './protected_branch_access_dropdown'; -import './protected_branch_create'; -import './protected_branch_dropdown'; -import './protected_branch_edit'; -import './protected_branch_edit_list'; +export { default as ProtectedBranchCreate } from './protected_branch_create'; +export { default as ProtectedBranchEditList } from './protected_branch_edit_list'; |