Remove webpack bundle tag for enviroments
This commit is contained in:
parent
e2638c3ff2
commit
aae4d8b014
4 changed files with 5 additions and 4 deletions
|
@ -5,7 +5,7 @@ import Translate from '../vue_shared/translate';
|
|||
|
||||
Vue.use(Translate);
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => new Vue({
|
||||
export default () => new Vue({
|
||||
el: '#environments-list-view',
|
||||
components: {
|
||||
environmentsComponent,
|
||||
|
@ -36,4 +36,4 @@ document.addEventListener('DOMContentLoaded', () => new Vue({
|
|||
},
|
||||
});
|
||||
},
|
||||
}));
|
||||
});
|
|
@ -0,0 +1,3 @@
|
|||
import initEnviroments from '~/environments/';
|
||||
|
||||
document.addEventListener('DOMContentLoaded', initEnviroments);
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
- content_for :page_specific_javascripts do
|
||||
= webpack_bundle_tag("common_vue")
|
||||
= webpack_bundle_tag("environments")
|
||||
|
||||
#environments-list-view{ data: { environments_data: environments_list_data,
|
||||
"can-create-deployment" => can?(current_user, :create_deployment, @project).to_s,
|
||||
|
|
|
@ -44,7 +44,6 @@ function generateEntries() {
|
|||
|
||||
const manualEntries = {
|
||||
balsamiq_viewer: './blob/balsamiq_viewer.js',
|
||||
environments: './environments/environments_bundle.js',
|
||||
monitoring: './monitoring/monitoring_bundle.js',
|
||||
mr_notes: './mr_notes/index.js',
|
||||
notebook_viewer: './blob/notebook_viewer.js',
|
||||
|
|
Loading…
Reference in a new issue