fix(js): add parameter list

This commit is contained in:
Philipp Matthias Schaefer 2021-03-14 22:08:38 +01:00
parent 694f4bdfd2
commit aab69f2dfd
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ function clearFields() {
function changePasswords() {
const query = {};
if(!fields().every(field.value.length != 0)) {
if(!fields().every(field => field.value.length != 0)) {
showModal("FillAllFields");
return;
}