awcodes / filament-curator

A media picker plugin for Filament Panels.
MIT License
343 stars 89 forks source link

Don't query Media if null #277

Closed martin-ro closed 1 year ago

martin-ro commented 1 year ago

Every time we pass null to a glider component a query is fired to see if a Media record exists.

It would be better to use the fallback (if defined) right away when $media is not integer.

awcodes commented 1 year ago

There was a recent merge to allow for uuid / ulid id's, so is_int() isn't going to work here. Maybe check for null instead?

martin-ro commented 1 year ago

Okay, if uuid's are supported checking for null is better. Should be good now?

awcodes commented 1 year ago

Thanks