You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line triggers an error inside the following configuration, because the value property does not exist:
AnyGetter (attribute is id) > FieldCollection Getter (collection attribute is an image field).
The line can be simply fixed by checking for empty fields like this: $value = $valueContainer->isEmpty ? null : $valueContainer->value;
The text was updated successfully, but these errors were encountered:
This line triggers an error inside the following configuration, because the
value
property does not exist:AnyGetter (attribute is id) > FieldCollection Getter (collection attribute is an image field).
The line can be simply fixed by checking for empty fields like this:
$value = $valueContainer->isEmpty ? null : $valueContainer->value;
The text was updated successfully, but these errors were encountered: