mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +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 9135e443a9e4fd162c5f03da3b98caf7b5260e04.
This commit is contained in:
parent
ea89a4d629
commit
5c9f50b43c
@ -61,7 +61,11 @@ export function SupplierPriceBreakColumns(): TableColumn[] {
|
|||||||
render: (record: any) => {
|
render: (record: any) => {
|
||||||
return (
|
return (
|
||||||
<Anchor
|
<Anchor
|
||||||
href={getDetailUrl(ModelType.supplierpart, record.part_detail.pk)}
|
href={getDetailUrl(
|
||||||
|
ModelType.supplierpart,
|
||||||
|
record.part_detail.pk,
|
||||||
|
true
|
||||||
|
)}
|
||||||
>
|
>
|
||||||
{record.part_detail.SKU}
|
{record.part_detail.SKU}
|
||||||
</Anchor>
|
</Anchor>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user