Jonathan Rodriguez
Jonathan Rodriguez
I know you can search basic relationships (one to one, one to many, etc) via joins: ``` 'joins' => [ 'posts' => ['users.id', 'posts.user_id'], 'post_tag' => ['posts.id', 'post_tag.post_id'], 'tags' =>...
This fixes the `renderNoResultsView` component from not rendering. The function was returning `void` instead of the component. Fixes #94
## Description The default component or custom component for `renderNoResultsView` in the `Select` component is not displayed when the search returns no data. ### Steps to reproduce the behaviour: 1....
## Description When you are searching in a `Select` input, when you go to select an `Option` the keyboard is dismissed. Then it requires another tap to select the `Option`....