Skip to content

Commit

Permalink
Merge 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
luanfreitasdev committed Aug 16, 2024
2 parents 2248fa2 + 26e6449 commit f5e906a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 9 additions & 0 deletions resources/views/components/cols.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@
}
if (data_get($column, 'fixedOnResponsive')) {
if (data_get($column, 'isAction') &&
in_array(
\PowerComponents\LivewirePowerGrid\Responsive::ACTIONS_COLUMN_NAME,
data_get($this->setUp, 'responsive.fixedColumns')
)) {
$isFixedOnResponsive = true;
}
if ($column->fixedOnResponsive) {
$isFixedOnResponsive = true;
}
}
Expand Down
1 change: 0 additions & 1 deletion resources/views/components/icons/filter.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-4 h-4"
>
<path
stroke-linecap="round"
Expand Down
3 changes: 1 addition & 2 deletions resources/views/components/icons/search.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<svg
{{ $attributes->merge(['class' => 'h-5 w-5']) }}
{{ $attributes->merge(['class' => 'h-5 w-5 dark:text-gray-300 text-gray-400']) }}
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
viewBox="0 0 24 24"
class="w-6 h-6 dark:text-gray-300 text-gray-400"
>
<path d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
</svg>

0 comments on commit f5e906a

Please sign in to comment.