Replies: 1 comment
-
This bug still exists, for all radio buttons on the website.
Hope it will help somebody. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here is search screen bug on latest Laravel 10 package.
The problem is in SearchScreen class. Method 'get" of session() helper does not takes second argument for default values so $type variable becomes null instead of first available search model. It throws exception.
So the fix was in copying SearchScreen to App\Orchid folder and redefining platform.search route.
Also after some debug I've found that the SearchLayout which generates radio buttons for choosing model filter also has bug.
Instance of Radio field class does not sets "checked" html attribute to needed radio input. I even tried with manually passing "true" boolean value to "checked" method despite is has "true" value as argument by default.
This is not first bug I've got in process of creating very simple CRUD application. Please, fix this.
Beta Was this translation helpful? Give feedback.
All reactions