#54 wizard steps navigation fixed

pull/1/head
Thomas Ballmann 3 years ago
parent 5c9ecb3693
commit 16abe1b8bf

@ -113,10 +113,10 @@
this.$router.push('/setup/name') this.$router.push('/setup/name')
}, },
registerApiKey () { registerApiKey () {
window.open('http://openweathermap.org/') window.open('https://openweathermap.org/')
}, },
stepBack () { stepBack () {
this.$router.push('/setup/') this.$router.push('/setup/wifi')
}, },
}, },
} }

@ -121,7 +121,9 @@
}, },
methods: { methods: {
onWifiSelect (wifi) { onWifiSelect (wifi) {
if (wifi.secure) { if (wifi.ssid === this.settings.system.wifi) {
this.nextStep()
} else if (wifi.secure) {
this.connectSSID = wifi.ssid this.connectSSID = wifi.ssid
this.wifiPasswordModal = true this.wifiPasswordModal = true
} else { } else {
@ -143,6 +145,9 @@
stepBack () { stepBack () {
this.$router.push('/setup/country') this.$router.push('/setup/country')
}, },
nextStep () {
this.$router.push('/setup/weather')
},
}, },
} }
</script> </script>

Loading…
Cancel
Save