fixed zeroValue isArray check

This commit is contained in:
Gani Georgiev
2024-04-13 16:16:21 +03:00
parent 7734d63e51
commit 4745bb4286
34 changed files with 45 additions and 45 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ export default class CommonHelper {
return null;
}
if (Array.isArray(config[k])) {
if (Array.isArray(val)) {
return [];
}