From 1c0e1ef72ff644cef4d2e5d6c62021de9cd9086b Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Wed, 13 Nov 2024 18:16:24 +0000 Subject: [PATCH] fix broken classname --- apps/home/static/home/js/tables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/home/static/home/js/tables.js b/apps/home/static/home/js/tables.js index b90bb2f..bbbb44f 100644 --- a/apps/home/static/home/js/tables.js +++ b/apps/home/static/home/js/tables.js @@ -335,7 +335,7 @@ function setTableControlsUsability(tableId, disabled) { const $table = $(tableId); const $tableBody = $table.closest(".js-tableBody"); const $tableFilters = $tableBody.siblings(".js-tableFilters"); - const $tableControls = $tableBody.siblings(".tableControls"); + const $tableControls = $tableBody.siblings(".js-tableControls"); $tableBody.find(".disable-while-loading").prop("disabled", disabled); $tableFilters.find(".disable-while-loading").prop("disabled", disabled);