2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 18:45:40 +00:00

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
This commit is contained in:
Oliver
2025-06-08 11:17:09 +10:00
committed by GitHub
parent 25d13b4201
commit 026904b361

View File

@ -73,7 +73,7 @@ export function LocationColumn(props: TableColumnProps): TableColumn {
);
}
return <Text size='sm'>{location.name}</Text>;
return <Text size='sm'>{location.pathstring}</Text>;
},
...props
};