rappasoft / laravel-livewire-tables

A dynamic table component for Laravel Livewire
https://rappasoft.com/docs/laravel-livewire-tables/v2/introduction
MIT License
1.76k stars 330 forks source link

[Bug]: Missing table header when using `collapseOnTablet()` #1438

Closed danie-ramdhani closed 11 months ago

danie-ramdhani commented 11 months ago

What happened?

when using collapseOnTablet(), the table header is missing:

missing table header on tablet version

but works fine on mobile:

mobile version

How to reproduce the bug

    Column::make('My Column', 'column')
        ->collapseOnTablet()

Package Version

v3.0.0-beta.4

PHP Version

8.2.x

Laravel Version

10

Alpine Version

3.13

Theme

Tailwind 3.x

Notes

No response

Error Message

No response

lrljoe commented 11 months ago

Have you previously published the blades/views? If so, remove them, and you shouldn't need to publish them for the package to work anyway!

lrljoe commented 11 months ago

Just been able to re-create, will have a fix for that out tomorrow

lrljoe commented 11 months ago

Fixed in v3.0.0-beta.6

lrljoe commented 11 months ago

@danie-ramdhani - please advise if this is fixed for you now :)

danie-ramdhani commented 11 months ago

Yep fixed. Thanks!