#54 wizard steps navigation fixed

This commit is contained in:
Thomas Ballmann 2021-01-08 20:43:34 +01:00
parent 5c9ecb3693
commit 16abe1b8bf
2 changed files with 8 additions and 3 deletions

View File

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

View File

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