Skip to content
Snippets Groups Projects
Commit 9ccf9213 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #14565 TIME 0:08 fix close modal if cancel

parent e5e9fc07
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ export class FunctionsService {
) { }
empty(value: any) {
if (value === null || value === undefined) {
if (value === null || value === undefined || value === false) {
return true;
} else if (Array.isArray(value)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment