Skip to content
Snippets Groups Projects
Commit d858c548 authored by Regis's avatar Regis
Browse files

conform to eslint

parent 4c8a6b61
Branches
Tags
2 merge requests!7857WIP: Realtime pipeline index vue,!7196Pipelines Vue
//= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
 
(gl => {
((gl) => {
gl.VuePipeLine = Vue.extend({
props: ['pipeline'],
template: `
Loading
Loading
@@ -9,6 +11,6 @@
{{ pipeline.status }}
</td>
</div>
`
})
})(window.gl || (window.gl = {}))
`,
});
})(window.gl || (window.gl = {}));
//= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
 
(gl => {
((gl) => {
gl.VuePipeLines = Vue.extend({
props: ['pipelines', 'count'],
template: `
Loading
Loading
@@ -29,8 +31,8 @@
`,
computed: {
pipes() {
return this.pipelines
}
}
})
})(window.gl || (window.gl = {}))
return this.pipelines;
},
},
});
})(window.gl || (window.gl = {}));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment