diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index e316c728..c186dc58 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -87,11 +87,7 @@ export default { fetchTasks() { console.log("Fetching tasks for job", this.jobID); if (!this.jobID) { - // Prevent a warning when fetchTasks() is called before the tabulator is - // properly initialised. After initialisation the data is empty anyway. - if (this.tabulator.initialized) { - this.tabulator.setData([]); - } + this.tabulator.setData([]); return; }