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

Commit

Permalink
fixed a small bug in cart.py
Browse files Browse the repository at this point in the history
  • Loading branch information
skoegl committed May 20, 2022
1 parent e44afc7 commit 45a5ef2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/cart.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def view(self, *args, **kwargs):
items = SkelList( self.productSkel )

for skel in items:
skel["amt"] = numericBone(
skel.clone()
skel.amt = numericBone(
descr="Quantity",
defaultValue=session.current["cart_products"][str(skel["key"].value)]["amount"])

Expand Down

0 comments on commit 45a5ef2

Please sign in to comment.