How can I hide this 'reset' button of column manager ?

No description
Solution:
I don't think Filament has a method to override this action, but you can hide it using css. Create a custom theme and add this to your theme.css ```css .fi-ta-col-manager-header button {...
Jump to solution
2 Replies
Solution
LeandroFerreira
I don't think Filament has a method to override this action, but you can hide it using css. Create a custom theme and add this to your theme.css
.fi-ta-col-manager-header button {
@apply hidden;
}
.fi-ta-col-manager-header button {
@apply hidden;
}
hlonish
hlonishOP5w ago
Thank you

Did you find this page helpful?