From: Raquel Medina Date: Thu, 18 Jul 2019 22:14:55 +0000 (+0200) Subject: settings: Fix error on connect for wired. X-Git-Tag: halibut_8.0.0^0 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=ae0566d46beaeb191bcad95b1503cc186aef65ad;p=apps%2Fsettings.git settings: Fix error on connect for wired. Fix error on connect for wired networks due to invalid 'password' property (bug introduced by commit d0350d3b30f53bbee53fcea6563b7f20505c1b2c). Bug-AGL: SPEC-2632 Signed-off-by: Raquel Medina Change-Id: I4a07f1c5500e5c3b26cacf803ce3cdd2676517b9 --- diff --git a/app/wired/Wired.qml b/app/wired/Wired.qml index 7632cc6..a200824 100644 --- a/app/wired/Wired.qml +++ b/app/wired/Wired.qml @@ -60,7 +60,6 @@ SettingPage { } else { console.log("Connecting to ->", service) networkNameText.font.italic = 1 - password.text = '' network.connect(service) } } @@ -87,7 +86,7 @@ SettingPage { Connections { target: network onInputRequest: { - console.log("Only unatheunticated access implemented for (", service, ")") + console.log("Only unauthenticated access implemented for wired") } }