Skip to content

Commit

Permalink
Fix entry page search afresh
Browse files Browse the repository at this point in the history
  • Loading branch information
perry-mitchell committed Mar 27, 2024
1 parent e55d3fc commit d3d9c86
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/popup/components/pages/EntriesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,19 +145,19 @@ function EntriesPageList(props: EntriesPageProps) {
description={t("popup.all-locked.description")}
icon="folder-close"
/>
) || (urlEntries.length <= 0 && recentEntries.length <= 0) && (
<InvalidState
title={t("popup.no-entries.title")}
description={t("popup.no-entries.description")}
icon="clean"
/>
) || searchedEntries.length > 0 && (
<EntryItemList
entries={searchedEntries}
onEntryAutoClick={handleEntryAutoLoginClick}
onEntryClick={handleEntryBodyClick}
onEntryInfoClick={handleEntryInfoClick}
/>
) || (urlEntries.length <= 0 && recentEntries.length <= 0) && (
<InvalidState
title={t("popup.no-entries.title")}
description={t("popup.no-entries.description")}
icon="clean"
/>
) || (
<EntryItemList
entries={{
Expand Down

0 comments on commit d3d9c86

Please sign in to comment.