2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 20:16:44 +00:00

Javascript linting

This commit is contained in:
Oliver Walters 2022-05-04 17:38:01 +10:00
parent 7365f7b5cb
commit 17c84141b1
2 changed files with 3 additions and 4 deletions

View File

@ -124,7 +124,7 @@ function getApiEndpointOptions(url, callback) {
} }
// Include extra context information in the request // Include extra context information in the request
url += '?context=true' url += '?context=true';
// Return the ajax request object // Return the ajax request object
$.ajax({ $.ajax({

View File

@ -28,7 +28,7 @@
createSalesOrderShipment, createSalesOrderShipment,
editPurchaseOrderLineItem, editPurchaseOrderLineItem,
exportOrder, exportOrder,
issurPurchaseOrder, issuePurchaseOrder,
loadPurchaseOrderLineItemTable, loadPurchaseOrderLineItemTable,
loadPurchaseOrderExtraLineTable loadPurchaseOrderExtraLineTable
loadPurchaseOrderTable, loadPurchaseOrderTable,
@ -242,8 +242,7 @@ function issuePurchaseOrder(order_id, options={}) {
handleFormSuccess(response, options); handleFormSuccess(response, options);
} }
} }
) );
} }