Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Fixed requesting multiple inventory items.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkleinsc committed Mar 4, 2016
1 parent 8d6b0c2 commit 374c1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/inventory/request/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default AbstractEditController.extend(FulfillRequest, InventoryLocations,
actions: {
addInventoryItem: function() {
var model = this.get('model'),
inventoryItem = model.get('model.inventoryItem'),
inventoryItem = model.get('inventoryItem'),
requestedItems = model.get('requestedItems'),
quantity = model.get('quantity');
model.validate().then(function() {
Expand Down

0 comments on commit 374c1d1

Please sign in to comment.