-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Update fails on index and detail views with other required fields #1
Comments
@FabienFrays Could you try doing this as a temporary workaround to see if it's fixed? I won't be able to look into the main issue for some time. return [
Text::make('column')
->rules('required')
->hideFromIndex(),
Text::make('column')
->onlyOnIndex(),
InlineBoolean::make('bool_column')
-> ...
]; If you could also please provide a code sample as I was not able to immediately reproduce your issue. |
Ok thanks. |
I have the same issue, when using BelongsTo Field
|
Found a workaround thanks to nova-inline-select Add the following
|
Same issue here but using ->readonly()->hideFromIndex() works for me |
can confirm: ->updateRules('sometimes'), does solve this issue for me. but it seems like an ugly solution to me. |
For me just adding |
Hi,
Thank's for your package.
The saving fails on index and detail views when the resource has any fields with a required rule.
Regards,
Fabien
The text was updated successfully, but these errors were encountered: