From 45fcd52a774dd6a8826e11660d452d9b2f0f07d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 09:57:37 +1100 Subject: [PATCH] change role for allocation table multiselect (#11264) (#11272) (cherry picked from commit 026011131e51e5434bab4e32e0c8fe0e025f022a) Co-authored-by: Jacob Felknor --- 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 bdecc5d61b..5c125733b6 100644 --- a/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx +++ b/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx @@ -304,7 +304,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,