Skip to content

Commit 31b3710

Browse files
:|
1 parent 12845f2 commit 31b3710

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

TransactionProcessor.Mobile/Pages/Transactions/BillPayment/BillPaymentSelectOperatorPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private Frame CreateOperatorTile(ContractOperatorModel modelOperator, Int32 rowC
3939
{
4040
Frame tile = new Frame();
4141
tile.SetDynamicResource(VisualElement.StyleProperty, "SelectionTileFrame");
42-
tile.AutomationId = modelOperator.OperatorName;
42+
tile.AutomationId = modelOperator.OperatorName.Replace(" ", "");
4343

4444
Image icon = new Image
4545
{

TransactionProcessor.Mobile/Pages/Transactions/BillPayment/BillPaymentSelectProductPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private Frame CreateProductTile(ContractProductModel modelProduct, Int32 rowCoun
3939
{
4040
Frame tile = new Frame();
4141
tile.SetDynamicResource(VisualElement.StyleProperty, "SelectionTileFrame");
42-
tile.AutomationId = modelProduct.ProductDisplayText;
42+
tile.AutomationId = modelProduct.ProductDisplayText.Replace(" ", "");
4343

4444
Image icon = new Image
4545
{

TransactionProcessor.Mobile/Pages/Transactions/MobileTopup/MobileTopupSelectOperatorPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private Frame CreateOperatorTile(ContractOperatorModel modelOperator, Int32 rowC
3939
{
4040
Frame tile = new Frame();
4141
tile.SetDynamicResource(VisualElement.StyleProperty, "SelectionTileFrame");
42-
tile.AutomationId = modelOperator.OperatorName;
42+
tile.AutomationId = modelOperator.OperatorName.Replace(" ", "");
4343

4444
Image icon = new Image
4545
{

TransactionProcessor.Mobile/Pages/Transactions/MobileTopup/MobileTopupSelectProductPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private void LoadProducts(MobileTopupSelectProductPageViewModel viewModel) {
4444
private Frame CreateProductTile(ContractProductModel modelProduct, Int32 rowCount) {
4545
Frame tile = new Frame();
4646
tile.SetDynamicResource(VisualElement.StyleProperty, "SelectionTileFrame");
47-
tile.AutomationId = modelProduct.ProductDisplayText;
47+
tile.AutomationId = modelProduct.ProductDisplayText.Replace(" ", "");
4848

4949
Image icon = new Image
5050
{

0 commit comments

Comments
 (0)