Skip to content

Commit

Permalink
Changed table default vertical overflow to auto (#1573)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmyers authored Dec 4, 2023
1 parent b0896f9 commit a5fb5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div
wire:key="{{ $tableName }}-twrap"
{{ $attributes->merge($customAttributes['wrapper'])
->class(['shadow overflow-y-scroll border-b border-gray-200 dark:border-gray-700 sm:rounded-lg' => $customAttributes['wrapper']['default'] ?? true])
->class(['shadow overflow-y-auto border-b border-gray-200 dark:border-gray-700 sm:rounded-lg' => $customAttributes['wrapper']['default'] ?? true])
->except('default') }}
>
<table
Expand Down

0 comments on commit a5fb5d3

Please sign in to comment.