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
I can confirm that this happens when adding things like type: 'divider' in the views where it's not supported (list, search). I've fixed it as you proposed. Thanks.
Describe the bug
The code doesn't check if the field config don't have a property.
if (!isset($fieldConfig['label']) && 'id' === $fieldConfig['property']) {
Should be:
if (!isset($fieldConfig['label']) && isset($fieldConfig['property']) && 'id' === $fieldConfig['property'] ){
In config, set something like:
- { type: 'divider' }
(OPTIONAL) Additional context
The text was updated successfully, but these errors were encountered: