Hiding Report Filter Number
How can we hide the number on a report that shows how many filters are applied?
Comments
-
You can use the following CSS pasted below to hide this! Here is our documentation for how to upload CSS files to your environment: https://documentation.decisions.com/docs/uploading-css
CSS:
.dp-report-grid-viewer__filteraction-count { min-width: 20px; height: 20px; border-radius: 20px; background-color: #F16920; color: #F0F0F0; display: none; align-items: center; justify-content: center; margin-right: 10px; font-weight: 600; font-size: 14px; }


