Commit d858c548 authored by Regis's avatar Regis

conform to eslint

parent 4c8a6b61
//= require vue //= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
(gl => { ((gl) => {
gl.VuePipeLine = Vue.extend({ gl.VuePipeLine = Vue.extend({
props: ['pipeline'], props: ['pipeline'],
template: ` template: `
...@@ -9,6 +11,6 @@ ...@@ -9,6 +11,6 @@
{{ pipeline.status }} {{ pipeline.status }}
</td> </td>
</div> </div>
` `,
}) });
})(window.gl || (window.gl = {})) })(window.gl || (window.gl = {}));
//= require vue //= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
(gl => { ((gl) => {
gl.VuePipeLines = Vue.extend({ gl.VuePipeLines = Vue.extend({
props: ['pipelines', 'count'], props: ['pipelines', 'count'],
template: ` template: `
...@@ -29,8 +31,8 @@ ...@@ -29,8 +31,8 @@
`, `,
computed: { computed: {
pipes() { pipes() {
return this.pipelines return this.pipelines;
} },
} },
}) });
})(window.gl || (window.gl = {})) })(window.gl || (window.gl = {}));
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment