Skip to content
This repository has been archived by the owner on Dec 19, 2019. It is now read-only.

Commit

Permalink
graphQl-786: fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Boyko committed Jul 25, 2019
1 parent 1f06dea commit 53a0325
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ private function fetch() : array
'price' => $link->getSelectionPriceValue(),
'position' => $link->getPosition(),
'id' => $link->getSelectionId(),
'qty' => (int)$link->getSelectionQty(),
'quantity' => (int)$link->getSelectionQty(),
'qty' => (float)$link->getSelectionQty(),
'quantity' => (float)$link->getSelectionQty(),
'is_default' => (bool)$link->getIsDefault(),
'price_type' => $this->enumLookup->getEnumValueFromField(
'PriceTypeEnum',
Expand Down

0 comments on commit 53a0325

Please sign in to comment.