Added control for avoid null values in dynamic components

This commit is contained in:
Jose Gonzalez 2020-11-30 12:29:25 +01:00
parent 863b5f3dc8
commit efff64c4bf
1 changed files with 3 additions and 0 deletions

View File

@ -2408,6 +2408,9 @@ class AgentWizard extends HTML
}
}
// If value comes Null, must return a empty value.
$value = ($value ?? '');
return $value;
}