Skip to content

Commit

Permalink
PR edits
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Gieringer <78054+carlgieringer@users.noreply.github.com>
  • Loading branch information
carlgieringer committed Feb 20, 2024
1 parent a76418b commit b48e24d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions premiser-ui/src/pages/explore/ExplorePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,11 @@ export default function ExplorePage() {
))}
itemColSpans={smallCardColSpans}
/>
{filteredDomains.length == 0 && !!domainFilter && "No matching domains"}
{allDomains.length == 0 && !isFetching && "No domains"}
{allDomains.length !== 0 &&
filteredDomains.length == 0 &&
!!domainFilter &&
"No matching domains"}
{allDomains.length === 0 && !isFetching && "No domains"}
</Page>
);
}

0 comments on commit b48e24d

Please sign in to comment.