Closed malle-pietje closed 1 year ago
the $titleAttribute
is = null, right?
your code this the same as the PR. are you sure you are on the last version?
Well in my codebase that was missing when using 2.0.2... Not sure how that was possible though.
try delete the vendor and reinstall, just to make sure
I now see what happened. PHPStorm had cached 2.0.2 as the version in the UI, but I had to set my "minimum-stability" to "dev" causing composer to load this dev version:
Now the PHPStorm UI picked it up.
Changed composer.json entry to this and all is good:
"guava/filament-icon-picker": "^2.0@stable",
Apologies for the noise!
I'm running version 2.0.2 and seeing the
Guava\FilamentIconPicker\Forms\IconPicker::relationship
error. After changing the relationship() method to this the error goes away:Note the addition of
= null
to the second parameter.Originally posted by @malle-pietje in https://github.com/LukasFreyCZ/filament-icon-picker/issues/13#issuecomment-1721115036