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

Fix broken URL

This commit is contained in:
Oliver 2022-03-04 12:23:47 +11:00
parent cb76b13eb2
commit 64dd870436

View File

@ -959,7 +959,7 @@ function loadPurchaseOrderTable(table, options) {
sortable: true, sortable: true,
sortName: 'supplier__name', sortName: 'supplier__name',
formatter: function(value, row) { formatter: function(value, row) {
return imageHoverIcon(row.supplier_detail.image) + renderLink(row.supplier_detail.name, `/company/${row.supplier}/purchase-orders/`); return imageHoverIcon(row.supplier_detail.image) + renderLink(row.supplier_detail.name, `/company/${row.supplier}/?display=purchase-orders`);
} }
}, },
{ {