Hello, I'm creating a shopping cart app and one the second page of the app, I have a gallery displaying a shopping cart of the users selected items. I wanted to give the user the ability to make changes in the quantity they selected in a text label using a patch function OnChange=
Patch(
colShoppingCart,
ThisItem,
{Qty: Value(Self.Text)}
)
The problem is, everytime I try to click on the text label to edit, the entire item selection is deleted. I do have a trash can item in the gallery to delete items but I doubt that if effecting the patch.

Thanks to anyone that can help!