diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 0784dab880..ae3068b104 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -29,6 +29,7 @@ All notable changes to the **Prowler UI** are documented in this file. - Refactor credentials forms with reusable components and error handling [(#7988)](https://github.com/prowler-cloud/prowler/pull/7988) - Updated the provider details section in Scan and Findings detail pages [(#7968)](https://github.com/prowler-cloud/prowler/pull/7968) - Improve filter behaviour and relationships between filters in findings page [(#8046)](https://github.com/prowler-cloud/prowler/pull/8046) +- Set filters panel to be always open by default [(#8085)](https://github.com/prowler-cloud/prowler/pull/8085) ### 🐞 Fixed diff --git a/ui/components/compliance/compliance-header/compliance-header.tsx b/ui/components/compliance/compliance-header/compliance-header.tsx index 428d9909a4..12dea88d92 100644 --- a/ui/components/compliance/compliance-header/compliance-header.tsx +++ b/ui/components/compliance/compliance-header/compliance-header.tsx @@ -64,9 +64,7 @@ export const ComplianceHeader = ({ )} - {allFilters.length > 0 && ( - - )} + {allFilters.length > 0 && } ); diff --git a/ui/components/ui/table/data-table-filter-custom.tsx b/ui/components/ui/table/data-table-filter-custom.tsx index 1822407f03..5d9eccbfde 100644 --- a/ui/components/ui/table/data-table-filter-custom.tsx +++ b/ui/components/ui/table/data-table-filter-custom.tsx @@ -17,7 +17,7 @@ export interface DataTableFilterCustomProps { export const DataTableFilterCustom = ({ filters, - defaultOpen = false, + defaultOpen = true, showClearButton = false, }: DataTableFilterCustomProps) => { const { updateFilter } = useUrlFilters();