Fix persisting client changes. Fix persisting team changes. Fix validating vat of 0.

This commit is contained in:
HenriT
2021-02-16 22:09:59 +02:00
parent b291455a05
commit 5cf166ca12
4 changed files with 6 additions and 12 deletions

View File

@ -59,7 +59,7 @@ export function validate(requiredFields, input) {
}
export function validateField(input, field, label) {
if (!input.hasOwnProperty(field) || !input[field] || input[field].length === 0) {
if (!input.hasOwnProperty(field) || input[field] === null || input[field].length === 0) {
return [`${label} is required`];
}
return null;