Skip to content

Commit

Permalink
minor: always hide entries that don't match the visibility threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
abenz1267 committed Feb 18, 2025
1 parent a3c1cb1 commit aae8796
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/ui/interactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -877,8 +877,8 @@ func processAsync(text string) {

wg.Wait()

// remove entries that don't match the visibility threshold if list is too long
if text != "" && len(entries) > config.Cfg.List.MaxEntries {
// remove entries that don't match the visibility threshold
if text != "" {
filteredEntries := []util.Entry{}

for _, v := range entries {
Expand Down

0 comments on commit aae8796

Please sign in to comment.