From 7bda7980097499f21beb0e8076fc72472f0aef3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 6 May 2022 11:59:11 +0200 Subject: [PATCH] Web: remove debug console.log() calls --- web/app/src/components/JobsTable.vue | 1 - web/app/src/components/TasksTable.vue | 1 - 2 files changed, 2 deletions(-) diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index e52b48c4..0d9e94e0 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -29,7 +29,6 @@ export default { title: 'Status', field: 'status', sorter: 'string', formatter(cell, formatterParams) { // eslint-disable-line no-unused-vars const cellValue = cell.getData(); - console.log(cellValue); return ''; } }, diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index 3b6f10fa..e316c728 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -31,7 +31,6 @@ export default { title: 'Status', field: 'status', sorter: 'string', formatter(cell, formatterParams) { // eslint-disable-line no-unused-vars const cellValue = cell.getData(); - console.log(cellValue); return ''; } },