1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

ref: Little refactoring

This commit is contained in:
Maksim Eltyshev 2023-01-08 22:10:41 +01:00
parent 58eda7d555
commit 6f79fc45eb
8 changed files with 14 additions and 17 deletions

View file

@ -6,11 +6,11 @@ const valuesValidator = (value) => {
return false;
}
if (value.background && !_.isPlainObject(value.background)) {
if (!_.isNil(value.background) && !_.isPlainObject(value.background)) {
return false;
}
if (value.backgroundImage && !_.isPlainObject(value.backgroundImage)) {
if (!_.isNil(value.backgroundImage) && !_.isPlainObject(value.backgroundImage)) {
return false;
}