-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix table groups only extra column #9362
Fix table groups only extra column #9362
Conversation
packages/tables/resources/views/components/summary/row.blade.php
Outdated
Show resolved
Hide resolved
packages/tables/resources/views/components/summary/index.blade.php
Outdated
Show resolved
Hide resolved
packages/tables/resources/views/components/summary/row.blade.php
Outdated
Show resolved
Hide resolved
packages/tables/resources/views/components/summary/row.blade.php
Outdated
Show resolved
Hide resolved
@@ -1069,6 +1070,7 @@ class="fi-ta-record-checkbox" | |||
:actions="count($actions)" | |||
:actions-position="$actionsPosition" | |||
:columns="$columns" | |||
:group-column="$group?->getColumn()" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we actually need the ?
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should? line 857, 858 is using the ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, in most other places we don't. 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't think it matters much tbh
…om/wychoong/filament into fix-table-groups-only-extra-column
i have same issue , in relation manger with last update !! |
fixes #9297
when using summary with groups only renders an empty column
this is because when enabled
->groupsOnly
, a heading is added to the summary row, so it pushes the columns to the right. and the empty column is from the grouped column