Category filter not showing dropdown in website embed CodeIgniter

I've pinned the dashboard to my website, but I found a problem with the filter dashboard in the category filter type not showing a drop-down list. It only shows the search box.
image
I am using CodeIgniter, not using Laravel

1 Like

@Zeddd Post your code snippet.


Is that enough?

@Zeddd If you are not including any params, then don't include it.
Otherwise change to $payload["params"] = (object)[];
Exactly like the issue and Laravel example describes:
https://github.com/metabase/metabase/issues/14474#issuecomment-765210945
https://github.com/metabase/embedding-reference-apps/blob/master/laravel/embedded_analytics/routes/web.php#L90

It worked! Thank you very much!