Skip to content

Commit

Permalink
Fix laravel nova actions conflict (#1756)
Browse files Browse the repository at this point in the history
  • Loading branch information
luanfreitasdev authored Nov 1, 2024
1 parent e76edd7 commit 25b5506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/row.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
@if (count(data_get($column, 'customContent')) > 0)
@include(data_get($column, 'customContent.view'), data_get($column, 'customContent.params'))
@else
@if (empty(data_get($row, 'actions')) && data_get($column, 'isAction'))
@if (data_get($column, 'isAction'))
<div class="pg-actions">
@if (method_exists($this, 'actionsFromView') && ($actionsFromView = $this->actionsFromView($row)))
<div wire:key="actions-view-{{ data_get($row, $this->realPrimaryKey) }}">
Expand Down

0 comments on commit 25b5506

Please sign in to comment.