mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
[PUI] Fix broken SKU link (#7909)
* Add API bump
* [PUI] Fix SKU link is broken
Closes https://github.com/invenhost/InvenTree/issues/88
* Revert "Add API bump"
This reverts commit 9135e443a9
.
This commit is contained in:
parent
ea89a4d629
commit
5c9f50b43c
@ -61,7 +61,11 @@ export function SupplierPriceBreakColumns(): TableColumn[] {
|
||||
render: (record: any) => {
|
||||
return (
|
||||
<Anchor
|
||||
href={getDetailUrl(ModelType.supplierpart, record.part_detail.pk)}
|
||||
href={getDetailUrl(
|
||||
ModelType.supplierpart,
|
||||
record.part_detail.pk,
|
||||
true
|
||||
)}
|
||||
>
|
||||
{record.part_detail.SKU}
|
||||
</Anchor>
|
||||
|
Loading…
Reference in New Issue
Block a user