Commit d858c548 authored by Regis's avatar Regis

conform to eslint

parent 4c8a6b61
//= require vue
/* global Vue, gl */
/* eslint-disable no-param-reassign */
(gl => {
((gl) => {
gl.VuePipeLine = Vue.extend({
props: ['pipeline'],
template: `
......@@ -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: `
......@@ -29,8 +31,8 @@
`,
computed: {
pipes() {
return this.pipelines
}
}
})
})(window.gl || (window.gl = {}))
return this.pipelines;
},
},
});
})(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