Skip to content

Commit b2e4afe

Browse files
committed
Merge branch 'REJack-fix/custom-class-on-table-head' into develop
2 parents 7b4ccbb + d7027be commit b2e4afe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/tailwind/components/table/heading.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
{{ $attributes->merge(array_merge(['class' => 'px-3 py-2 md:px-6 md:py-3 bg-gray-50 dark:bg-gray-800'], $customAttributes)) }}
1212
>
1313
@unless ($sortingEnabled && $sortable)
14-
<span class="block text-left text-xs leading-4 font-medium text-gray-500 uppercase tracking-wider dark:text-gray-400">
14+
<span class="block text-xs leading-4 font-medium text-gray-500 uppercase tracking-wider dark:text-gray-400">
1515
{{ $text ?? $slot }}
1616
</span>
1717
@else
1818
<button
1919
wire:click="sortBy('{{ $column }}', '{{ $text ?? $column }}')"
2020
{{ $attributes->except('class') }}
21-
class="flex items-center space-x-1 text-left text-xs leading-4 font-medium text-gray-500 uppercase tracking-wider group focus:outline-none focus:underline dark:text-gray-400"
21+
class="flex items-center space-x-1 text-xs leading-4 font-medium text-gray-500 uppercase tracking-wider group focus:outline-none focus:underline dark:text-gray-400"
2222
>
2323
<span>{{ $text ?? $slot }}</span>
2424

0 commit comments

Comments
 (0)