#How can I hide this 'reset' button of column manager ?
4 messages · Page 1 of 1 (latest)
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;
}
Thank you