Skip to content

Commit aae8796

Browse files
committedFeb 18, 2025·
minor: always hide entries that don't match the visibility threshold
1 parent a3c1cb1 commit aae8796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎internal/ui/interactions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -877,8 +877,8 @@ func processAsync(text string) {
877877

878878
wg.Wait()
879879

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

884884
for _, v := range entries {

0 commit comments

Comments
 (0)
Please sign in to comment.