Added control for avoid null values in dynamic components
This commit is contained in:
parent
863b5f3dc8
commit
efff64c4bf
|
@ -2408,6 +2408,9 @@ class AgentWizard extends HTML
|
|||
}
|
||||
}
|
||||
|
||||
// If value comes Null, must return a empty value.
|
||||
$value = ($value ?? '');
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue