[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:
Matthias Mair 2024-08-19 01:25:36 +02:00 committed by GitHub
parent ea89a4d629
commit 5c9f50b43c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>