We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public function fields(NovaRequest $request): array { return [ BelongsTo::make('Class', 'programme', Programme::class) ->required() ->rules('required') ->searchable() ] } etc
If I remove ->searchable() then it works, however this is not usable for us.
Because there may be hundreds/thousands of programmes.
We can't include them all in a dropdown list, hence search.
This was working on a previous Nova version 4.31, updated and now not working
The text was updated successfully, but these errors were encountered:
It started happening on exactly Nova 4.32.7
Sorry, something went wrong.
Issue for for bug was created 2 weeks ago: #6276. Looks like fix should arrive in next release.
It started with 4.32.16 – I guess with this commit:
Downgrading to 4.32.15 works.
Duplicate of #6276 and should be fixed in 4.33.1
4.33.1
No branches or pull requests
Description:
Detailed steps to reproduce the issue on a fresh Nova installation:
public function fields(NovaRequest $request): array {
return [
BelongsTo::make('Class', 'programme', Programme::class)
->required()
->rules('required')
->searchable()
]
}
etc
If I remove ->searchable() then it works, however this is not usable for us.
Because there may be hundreds/thousands of programmes.
We can't include them all in a dropdown list, hence search.
This was working on a previous Nova version 4.31, updated and now not working
The text was updated successfully, but these errors were encountered: