Skip to content

Commit

Permalink
fix: don't display empty state while loading quick filters
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadshaheer committed Jan 21, 2025
1 parent 233e0eb commit e96068f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ export default function CheckboxFilter(props: ICheckboxProps): JSX.Element {
<Skeleton paragraph={{ rows: 4 }} />
</section>
)}
{isOpen ? (
!isLoading && !isInfraMonitoring && !attributeValues.length ? (
{isOpen && !isLoading ? (
!isInfraMonitoring && !attributeValues.length ? (
<section className="go-to-docs">
<div className="go-to-docs__container">
<div className="go-to-docs__container-icon">
Expand Down

0 comments on commit e96068f

Please sign in to comment.