elimination of password-bug
This commit is contained in:
parent
1586e74cdc
commit
0e18c0bd23
@ -43,8 +43,10 @@ export const tutorials = [
|
|||||||
return {text: 'Die SSID-Angabe fehlt.', type: 'error'}
|
return {text: 'Die SSID-Angabe fehlt.', type: 'error'}
|
||||||
}
|
}
|
||||||
var password = wifiBlock.getFieldValue('Password')
|
var password = wifiBlock.getFieldValue('Password')
|
||||||
if(password !== 'Passwort'){
|
if(password){
|
||||||
return {text: 'Password muss als Angabe "Passwort" haben.', type: 'error'}
|
if(password !== 'Passwort'){
|
||||||
|
return {text: 'Password muss als Angabe "Passwort" haben.', type: 'error'}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
return {text: 'Die Angabe des Passworts fehlt.', type: 'error'}
|
return {text: 'Die Angabe des Passworts fehlt.', type: 'error'}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user