From e0395e73bf6ca2a931d34f8cc66b2fa88bd15156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 12 Aug 2022 11:29:12 -0700 Subject: [PATCH] Web: fix worker status filter not updating Fix the status filter dots not updating when a worker changes status. --- web/app/src/components/workers/WorkersTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/src/components/workers/WorkersTable.vue b/web/app/src/components/workers/WorkersTable.vue index b187e07b..923b94a1 100644 --- a/web/app/src/components/workers/WorkersTable.vue +++ b/web/app/src/components/workers/WorkersTable.vue @@ -160,7 +160,7 @@ export default { promise .then(this.sortData) .then(() => { this.tabulator.redraw(); }) // Resize columns based on new data. - .then(this.refreshAvailableStatuses); + .then(this._refreshAvailableStatuses); // TODO: this should also resize the columns, as the status column can // change sizes considerably.