We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 907a378 commit 30979d8Copy full SHA for 30979d8
core/frontend/src/components/wifi/ConnectionDialog.vue
@@ -202,6 +202,7 @@ export default Vue.extend({
202
const credentials: NetworkCredentials = { ssid: this.real_ssid, password: this.password }
203
this.connection_status = ConnectionStatus.Connecting
204
try {
205
+ wifi.setLoading(true)
206
await back_axios({
207
method: 'post',
208
url: `${wifi.API_URL}/connect`,
@@ -223,6 +224,7 @@ export default Vue.extend({
223
224
}
225
},
226
async removeSavedWifiNetwork(): Promise<void> {
227
228
229
230
url: `${wifi.API_URL}/remove`,
0 commit comments