Merge pull request #1378 from amnezia-vpn/bugfix/pre-release-hotfixes

bugfix/pre-release-hotfixes
This commit is contained in:
Nethius 2025-01-28 19:22:36 +07:00 committed by GitHub
commit da5fe1d766
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 369 additions and 354 deletions

View file

@ -163,12 +163,12 @@ PageType {
Layout.rightMargin: 16
Layout.leftMargin: 16
visible: textKey.textFieldText !== ""
visible: textKey.textField.text !== ""
text: qsTr("Continue")
clickedFunc: function() {
if (ImportController.extractConfigFromData(textKey.textFieldText)) {
if (ImportController.extractConfigFromData(textKey.textField.text)) {
PageController.goToPage(PageEnum.PageSetupWizardViewConfig)
}
}