From 026011131e51e5434bab4e32e0c8fe0e025f022a Mon Sep 17 00:00:00 2001 From: Jacob Felknor Date: Mon, 9 Feb 2026 15:53:29 -0700 Subject: [PATCH] change role for allocation table multiselect (#11264) --- src/frontend/src/tables/build/BuildAllocatedStockTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx b/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx index bacf33764e..b09ade00e3 100644 --- a/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx +++ b/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx @@ -311,7 +311,7 @@ export default function BuildAllocatedStockTable({ }, enableBulkDelete: allowEdit && user.hasDeleteRole(UserRoles.build), enableDownload: true, - enableSelection: allowEdit && user.hasDeleteRole(UserRoles.build), + enableSelection: allowEdit && user.hasChangeRole(UserRoles.build), rowActions: rowActions, tableActions: tableActions, tableFilters: tableFilters,