From 339aafc1e49c45992bf814408e0160ab2900c19b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 27 May 2022 16:43:40 +0200 Subject: [PATCH] Cleanup: add missing trailing comma This comma isn't strictly necessary, but makes the diff cleaner when adding new functions. --- web/app/src/components/TasksTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index 11d86eef..25b09e3e 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -190,7 +190,7 @@ export default { let tableHeight = jobDetailsColumn.clientHeight - taskListTable.offsetTop; this.tabulator.setHeight(tableHeight); - } + }, } };