Skip to content

Commit

Permalink
Fix IAA error messages on Android #3279 (#3804)
Browse files Browse the repository at this point in the history
  • Loading branch information
lesleyjanenorton authored Jun 22, 2022
1 parent d2dd165 commit 4511a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ColumnLayout {
Layout.fillWidth: true
_placeholderText: _inputPlaceholderText
Keys.onReturnPressed: col.submitInfo(textInput)
onTextChanged: if (hasError) hasError = false
onDisplayTextChanged: if (hasError) hasError = false
}

VPNPasswordInput {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/authenticationInApp/ViewAuthenticationStart.qml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ VPNInAppAuthenticationBase {
_buttonEnabled: VPNAuthInApp.state === VPNAuthInApp.StateStart && activeInput().text.length !== 0 && !activeInput().hasError
_buttonOnClicked: (inputText) => { VPNAuthInApp.checkAccount(inputText); }
_buttonText: qsTrId("vpn.postAuthentication.continue")
_inputMethodHints: Qt.ImhEmailCharactersOnly | Qt.ImhNoAutoUppercase
_inputMethodHints: Qt.ImhEmailCharactersOnly | Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText | Qt.ImhSensitiveData
_inputPlaceholderText: VPNl18n.InAppSupportWorkflowSupportEmailFieldPlaceholder
}

Expand Down

0 comments on commit 4511a39

Please sign in to comment.