- Issue created by @pmkanse
- 🇮🇳India dineshkumarbollu
The issue might due to below line "title" are Null
'data-override-title' => $view_attr['override_title'], 'data-title' => $view_attr['title'],
- 🇮🇳India dineshkumarbollu
Try these if value is NUll,
'data-override-title' => $view_attr['override_title']?? '', 'data-title' => $view_attr['title']?? ''
- 🇩🇪Germany Input
This should fix this with #4. Also warnings from empty/missing data-view-arguments are catched.
Version 2.0.2 is also affected