From 1f76c3bc6451c74a49df29ca4f82aa6ef544678c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 11 May 2022 15:03:40 +0200 Subject: [PATCH] Web: remove job/task ID column from table --- web/app/src/components/JobsTable.vue | 5 +---- web/app/src/components/TasksTable.vue | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index 1d8e2ead..5ffa2b01 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -27,10 +27,7 @@ export default { // 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: "ID", field: "id", headerSort: false, formatter: (cell) => cell.getData().id.substr(0, 8), }, { title: 'Status', field: 'status', sorter: 'string', formatter(cell, formatterParams) { // eslint-disable-line no-unused-vars diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index f5b37c0d..251dab95 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -29,10 +29,7 @@ export default { // 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: "ID", field: "id", headerSort: false, formatter: (cell) => cell.getData().id.substr(0, 8), }, { title: 'Status', field: 'status', sorter: 'string', formatter(cell, formatterParams) { // eslint-disable-line no-unused-vars