Components not properly rendered in detail and index pages.
On detail page action toolbar hidden if no other icons showed by Nova. E. g. if resource forbidden to update, for example.
Trouble in .icon-action-toolbar-wrapper style. It works correct without width definition.
.icon-action-toolbar-wrapper {
width: calc(100% - 48px);
}
On index page component with .icon-action-toolbar.w-full root rendered empty.
Action definition
public function actions( NovaRequest $request ) {
return [
Actions\SendOrderEmail::make()
->showOnIndex()
->showOnDetail()
->showInline()
->icon('envelope'),
];
}
Components not properly rendered in detail and index pages.
On detail page action toolbar hidden if no other icons showed by Nova. E. g. if resource forbidden to update, for example.
Trouble in
.icon-action-toolbar-wrapperstyle. It works correct without width definition.On index page component with
.icon-action-toolbar.w-fullroot rendered empty.Action definition