From a92435459efca84f44e40cc0c01b81be58dd9ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 12 Apr 2022 14:26:07 +0200 Subject: [PATCH] Web: tweak job table layout --- web/app/src/components/JobsTable.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index 207eff86..16f809b3 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -17,10 +17,11 @@ export default { const options = { // See pkg/api/flamenco-manager.yaml, schemas Job and JobUpdate. columns: [ - { title: 'ID', field: 'id', sorter: 'string', width: "15ex" }, + { formatter: "rowSelection", titleFormatter: "rowSelection", hozAlign: "center", headerHozAlign: "center", headerSort: false }, + { title: 'ID', field: 'id', sorter: 'string', width: "12%" }, { title: 'Name', field: 'name', sorter: 'string' }, - { title: 'Status', field: 'status', sorter: 'string', width: 100 }, - { title: 'Type', field: 'type', sorter: 'string', width: 150 }, + { title: 'Status', field: 'status', sorter: 'string' }, + { title: 'Type', field: 'type', sorter: 'string' }, { title: 'Prio', field: 'priority', sorter: 'number' }, { title: 'Updated', field: 'updated',