You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/fyle/spender-onboarding/spender-onboarding-connect-card-step/spender-onboarding-connect-card-step.component.spec.ts
`We ran into an issue while processing your request for the cards **** 1234, **** 5678 and **** 9012.<br><br>You can cancel and retry connecting the failed card or proceed to the next step.`
260
+
`We ran into an issue while processing your request for the cards <span class='text-bold'>**** 1234, **** 5678</span> and <span class='text-bold'>**** 9012</span>.<br><br>You can cancel and retry connecting the failed card or proceed to the next step.`
`We ran into an issue while processing your request for the card **** 1234.<br><br> You can cancel and retry connecting the failed card or proceed to the next step.`
272
+
`We ran into an issue while processing your request for the card <span class='text-bold'>**** 1234</span>.<br><br> You can cancel and retry connecting the failed card or proceed to the next step.`
Copy file name to clipboardExpand all lines: src/app/fyle/spender-onboarding/spender-onboarding-connect-card-step/spender-onboarding-connect-card-step.component.ts
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -132,9 +132,9 @@ export class SpenderOnboardingConnectCardStepComponent implements OnInit, OnChan
return`We ran into an issue while processing your request for the cards ${allButLast} and ${lastCard}.<br><br>You can cancel and retry connecting the failed card or proceed to the next step.`;
135
+
return`We ran into an issue while processing your request for the cards <span class='text-bold'>${allButLast}</span> and <span class='text-bold'>${lastCard}</span>.<br><br>You can cancel and retry connecting the failed card or proceed to the next step.`;
136
136
}else{
137
-
return`We ran into an issue while processing your request for the card ${this.cardsList.failedCards[0]}.<br><br> You can cancel and retry connecting the failed card or proceed to the next step.`;
137
+
return`We ran into an issue while processing your request for the card <span class='text-bold'>${this.cardsList.failedCards[0]}</span>.<br><br> You can cancel and retry connecting the failed card or proceed to the next step.`;
138
138
}
139
139
}
140
140
@@ -167,10 +167,12 @@ export class SpenderOnboardingConnectCardStepComponent implements OnInit, OnChan
0 commit comments