We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2f5bb commit 6bddccaCopy full SHA for 6bddcca
EssentialUIKit/ViewModels/Ecommerce/CartPageViewModel.cs
@@ -30,7 +30,7 @@ public class CartPageViewModel : INotifyPropertyChanged
30
31
private double percent;
32
33
- private ObservableCollection<Product> produts;
+ private ObservableCollection<Product> products;
34
35
private Command placeOrderCommand;
36
@@ -158,15 +158,15 @@ public ObservableCollection<Product> Products
158
{
159
get
160
161
- return this.produts;
+ return this.products;
162
}
163
set
164
165
- if (this.produts == value)
+ if (this.products == value)
166
167
return;
168
169
- this.produts = value;
+ this.products = value;
170
this.NotifyPropertyChanged();
171
GetProducts(Products);
172
UpdatePrice();
0 commit comments