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

Commit 45a5ef2

Browse files
committed
fixed a small bug in cart.py
1 parent e44afc7 commit 45a5ef2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/cart.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def view(self, *args, **kwargs):
9191
items = SkelList( self.productSkel )
9292

9393
for skel in items:
94-
skel["amt"] = numericBone(
94+
skel.clone()
95+
skel.amt = numericBone(
9596
descr="Quantity",
9697
defaultValue=session.current["cart_products"][str(skel["key"].value)]["amount"])
9798

0 commit comments

Comments
 (0)