diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index 7bbae2f9..a901ec32 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -45,7 +45,6 @@ export default { const options = { // See pkg/api/flamenco-manager.yaml, schemas Job and JobUpdate. columns: [ - // { formatter: "rowSelection", titleFormatter: "rowSelection", hozAlign: "center", headerHozAlign: "center", headerSort: false }, // { title: "ID", field: "id", headerSort: false, formatter: (cell) => cell.getData().id.substr(0, 8), }, { title: 'Status', field: 'status', sorter: 'string', diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index 4d08c465..eeadfea1 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -28,7 +28,6 @@ export default { const options = { // See pkg/api/flamenco-manager.yaml, schemas Task and TaskUpdate. columns: [ - // { formatter: "rowSelection", titleFormatter: "rowSelection", hozAlign: "center", headerHozAlign: "center", headerSort: false }, // { title: "ID", field: "id", headerSort: false, formatter: (cell) => cell.getData().id.substr(0, 8), }, { title: 'Status', field: 'status', sorter: 'string',