/* eslint-disable no-param-reassign */ /* global Vue */ require('./pipelines_table_row'); /** * Pipelines Table Component. * * Given an array of objects, renders a table. */ (() => { window.gl = window.gl || {}; gl.pipelines = gl.pipelines || {}; gl.pipelines.PipelinesTableComponent = Vue.component('pipelines-table-component', { props: { pipelines: { type: Array, required: true, default: () => ([]), }, }, components: { 'pipelines-table-row-component': gl.pipelines.PipelinesTableRowComponent, }, template: `
Status Pipeline Commit Stages
`, }); })();