Alexey Rozhnov
Alexey Rozhnov
Looks like this error appears when you miss equals sign at the end of the password.
9 months old post, same error, same reason. What fixes were made?
> @Balaji08 so your number has been banned. Is is a permanent ban or temporary?
My solution to work with same choices that I put into model field choices attribute. ```python class Select2TuplesListView(autocomplete.Select2ListView): def autocomplete_results(self, results): filtered_results = [] for current_tuple in results: name =...
Getting the same error when trying to attach product to collection. Maybe it's important to note that I use two languages. SQL: ```sql select distinct "lunar_collections".* from "lunar_collections" left join...
> I think this is a known issue with the search side of things, but I'd have to check. I think so too. I even wasn't able to search for...
Same error appears with SCOUT_DRIVER=meilisearch.
Found solution [here](https://github.com/filamentphp/filament/issues/8698#issuecomment-1843861645): modify field type from `json` to `jsonb`. I've modified `lunar_collections.attribute_data` to `jsonb` and problem has gone.