This commit is contained in:
Eduard Kuzmenko 2022-07-18 17:04:08 +02:00
parent 382c217eb2
commit fcba3619f0
2 changed files with 2 additions and 4 deletions

View File

@ -752,8 +752,6 @@ export default class PopupPayment extends PopupElement {
onConfirmed();
});
}
this.hide();
} catch(err) {
if((err as ApiError).type === 'BOT_PRECHECKOUT_TIMEOUT') {
toastNew({langPackKey: 'Error.AnError'});

View File

@ -355,7 +355,7 @@ export default class PopupPaymentCard extends PopupElement<{
const previousInputField = switchFocusOrder[switchFocusOrder.indexOf(inputField) - 1];
if(previousInputField) {
// previousInputField.value = previousInputField.value.slice(0, -1);
placeCaretAtEnd(previousInputField.input);
placeCaretAtEnd(previousInputField.input, true);
}
}
};
@ -375,7 +375,7 @@ export default class PopupPaymentCard extends PopupElement<{
!nextInputField.validateNew(undefined, undefined, true) :
!nextInputField.value
) {
placeCaretAtEnd(nextInputField.input);
placeCaretAtEnd(nextInputField.input, true);
break;
}
}