From 026904b361ef53142fdbb2b35a2a584d42e63b4d Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 8 Jun 2025 11:17:09 +1000 Subject: [PATCH] Render whole stock location path (#9747) * Render whole stock location path - Render location pathstring, not just name - Brings tables into line with how location is displayed elsewhere - Closes https://github.com/inventree/InvenTree/issues/9627 * Handle error on worker boot --- src/frontend/src/tables/ColumnRenderers.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/tables/ColumnRenderers.tsx b/src/frontend/src/tables/ColumnRenderers.tsx index 0f51d1f192..db133b3b4e 100644 --- a/src/frontend/src/tables/ColumnRenderers.tsx +++ b/src/frontend/src/tables/ColumnRenderers.tsx @@ -73,7 +73,7 @@ export function LocationColumn(props: TableColumnProps): TableColumn { ); } - return {location.name}; + return {location.pathstring}; }, ...props };