diff --git a/src/frontend/src/components/tables/stock/StockLocationTable.tsx b/src/frontend/src/components/tables/stock/StockLocationTable.tsx index 35eba31951..3b91450695 100644 --- a/src/frontend/src/components/tables/stock/StockLocationTable.tsx +++ b/src/frontend/src/components/tables/stock/StockLocationTable.tsx @@ -54,6 +54,13 @@ export function StockLocationTable({ params = {} }: { params?: any }) { sortable: true, render: (record: any) => (record.structural ? 'Y' : 'N') // TODO: custom 'true / false' label, + }, + { + accessor: 'location_type', + title: t`Location Type`, + switchable: true, + sortable: false, + render: (record: any) => record.location_type_detail?.name } ]; }, [params]);