Skip to content

Commit dbc3ff2

Browse files
Fixed warning
1 parent 0234c56 commit dbc3ff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nxtbn/cart/admin_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class CartItemType(DjangoObjectType):
1010
db_id = graphene.ID(source='id')
1111
class Meta:
1212
model = CartItem
13-
fields = ('id', 'cart', 'variant', 'quantity', 'created_at', 'updated_at')
13+
fields = ('id', 'cart', 'variant', 'quantity', 'created_at', 'last_modified')
1414

1515

1616
class CartType(DjangoObjectType):

0 commit comments

Comments
 (0)