Hi Team, Is there way to hide "reset all filters"?
# gooddata-cloud
a
Hi Team, Is there way to hide "reset all filters"?
j
Hi Anjali Unfortunately, as far as I know, there is no built-in way how to disable the reset filters button. It is doable, but only through UI SDK. You would either need to use
extraPlugins
feature would allow you to inject custom logic or components into the dashboard at runtime, including small helpers like a widget that applies CSS to hide UI elements. or CSS alone could be a good option here as well- setting
visibility: hidden
on
.dash-filters-reset
is a simple way how to hide the option:
Copy code
.dash-filters-reset {
  visibility: hidden;
}
If you wish, let me know and I can submit a product feedback on your behalf so we can consider some built in UI way how to disable this button.