diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.Droid/Resources/Resource.Designer.cs b/src/Mobile/eShopOnContainers/eShopOnContainers.Droid/Resources/Resource.Designer.cs index 074729b61..b3aa8d16c 100644 --- a/src/Mobile/eShopOnContainers/eShopOnContainers.Droid/Resources/Resource.Designer.cs +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.Droid/Resources/Resource.Designer.cs @@ -2274,9 +2274,27 @@ namespace eShopOnContainers.Droid // aapt resource value: 0x7f020054 public const int avd_hide_password = 2130837588; + // aapt resource value: 0x7f020127 + public const int avd_hide_password_1 = 2130837799; + + // aapt resource value: 0x7f020128 + public const int avd_hide_password_2 = 2130837800; + + // aapt resource value: 0x7f020129 + public const int avd_hide_password_3 = 2130837801; + // aapt resource value: 0x7f020055 public const int avd_show_password = 2130837589; + // aapt resource value: 0x7f02012a + public const int avd_show_password_1 = 2130837802; + + // aapt resource value: 0x7f02012b + public const int avd_show_password_2 = 2130837803; + + // aapt resource value: 0x7f02012c + public const int avd_show_password_3 = 2130837804; + // aapt resource value: 0x7f020056 public const int background = 2130837590; diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.TestRunner.Droid/Resources/Resource.Designer.cs b/src/Mobile/eShopOnContainers/eShopOnContainers.TestRunner.Droid/Resources/Resource.Designer.cs index cf88d1538..694a01864 100644 --- a/src/Mobile/eShopOnContainers/eShopOnContainers.TestRunner.Droid/Resources/Resource.Designer.cs +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.TestRunner.Droid/Resources/Resource.Designer.cs @@ -2268,9 +2268,27 @@ namespace eShopOnContainers.TestRunner.Droid // aapt resource value: 0x7f020053 public const int avd_hide_password = 2130837587; + // aapt resource value: 0x7f020112 + public const int avd_hide_password_1 = 2130837778; + + // aapt resource value: 0x7f020113 + public const int avd_hide_password_2 = 2130837779; + + // aapt resource value: 0x7f020114 + public const int avd_hide_password_3 = 2130837780; + // aapt resource value: 0x7f020054 public const int avd_show_password = 2130837588; + // aapt resource value: 0x7f020115 + public const int avd_show_password_1 = 2130837781; + + // aapt resource value: 0x7f020116 + public const int avd_show_password_2 = 2130837782; + + // aapt resource value: 0x7f020117 + public const int avd_show_password_3 = 2130837783; + // aapt resource value: 0x7f020055 public const int design_bottom_navigation_item_background = 2130837589; diff --git a/src/Services/Basket/Basket.API/IntegrationEvents/EventHandling/ProductPriceChangedIntegrationEventHandler.cs b/src/Services/Basket/Basket.API/IntegrationEvents/EventHandling/ProductPriceChangedIntegrationEventHandler.cs index 76a78bad7..fe15da624 100644 --- a/src/Services/Basket/Basket.API/IntegrationEvents/EventHandling/ProductPriceChangedIntegrationEventHandler.cs +++ b/src/Services/Basket/Basket.API/IntegrationEvents/EventHandling/ProductPriceChangedIntegrationEventHandler.cs @@ -30,9 +30,10 @@ namespace Microsoft.eShopOnContainers.Services.Basket.API.IntegrationEvents.Even private async Task UpdatePriceInBasketItems(int productId, decimal newPrice, decimal oldPrice, CustomerBasket basket) { - var itemsToUpdate = basket?.Items?.Where(x => int.Parse(x.ProductId) == productId).ToList(); + string match = productId.ToString(); + var itemsToUpdate = basket?.Items?.Where(x => x.ProductId == match).ToList(); - if (itemsToUpdate != null) + if (itemsToUpdate != null) { foreach (var item in itemsToUpdate) { diff --git a/src/Web/WebSPA/WebSPA.csproj b/src/Web/WebSPA/WebSPA.csproj index b5274462c..b6aeb94b5 100644 --- a/src/Web/WebSPA/WebSPA.csproj +++ b/src/Web/WebSPA/WebSPA.csproj @@ -8,6 +8,7 @@ true wwwroot/dist/** $(DefaultItemExcludes);$(GeneratedItemPatterns) + 2.5