fix dynamic logic
This commit is contained in:
@@ -162,7 +162,7 @@ Espo.define('dynamic-logic', [], function () {
|
||||
if (Array.isArray(setValue)) {
|
||||
return !!setValue.length;
|
||||
}
|
||||
return setValue !== null && (setValue !== '');
|
||||
return setValue !== null && (setValue !== '') && typeof setValue !== 'undefined';
|
||||
} else if (type === 'isTrue') {
|
||||
return !!setValue;
|
||||
} else if (type === 'isFalse') {
|
||||
|
||||
Reference in New Issue
Block a user