Closed valentinrougier39 closed 1 year ago
Unable to reproduce the issue, please provide full reproducing repository based on fresh installation as suggested in the bug report template (or you can refer to https://github.com/nova-issues for example)
I have this problem on MacOs Ventura with Firefox and Chrome. I give you versions on the hour
Versions doesn't matter here. We need reproducing code to debug the issue.
Nova already includes dusk tests to cover this issue and none are failing so we need to replicate your issue, to do that we need reproducing code.
having the same issue, trying to reproduce it on a fresh install
In Nova/Resource.php
public function authorizedToReplicate(Request $request): bool { return false; }
This command disable all replicate button in all resource because I don't need replication. And in my resource I use fields method to display my resource fields :
public function fields(NovaRequest $request) { return [ ID::make()->sortable(), Text::make('XXXX', 'xxx'), Text::make('XXXX', 'xxx'), Date::make('XXXX', 'xxx'), Email::make('XXXX', 'xxx'), Text::make('XXXX', 'xxx'), ]; }
If you want an another part of code, tell me. Thanks
@valentinrougier39 That's already covered by our dusk tests
Sure, but I've this result.
It could be caused by 3rd party packages, which we don't have control and unable to offer support.
That's why we need a reproducing code/repository, as what we have right now doesn't produce the same output as what's you are experiencing.
It's a Company Repository so I can't give you an access to it. But this is the list of used packages related to nova :
@valentinrougier39 See https://github.com/outl1ne/nova-sortable/issues/172
Hi, in my Nova Resource in Index view, dots button is showing even if there is no items inside : I've disable replicate,... and I haven't action to show in this dropdown. Do you have a solution to hide dots button please ? Thank you