Skip to content

Commit

Permalink
Add fuzzy matching on all columns
Browse files Browse the repository at this point in the history
Closes #16
  • Loading branch information
quantumsheep committed Nov 5, 2023
1 parent 728ff01 commit c894010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/display/components/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type ListItem struct {

func (i *ListItem) Title() string { return i.Name }
func (i *ListItem) Description() string { return i.Details }
func (i *ListItem) FilterValue() string { return i.Name }
func (i *ListItem) FilterValue() string { return i.Name + i.Details }

type ListComponent struct {
Model list.Model
Expand Down

0 comments on commit c894010

Please sign in to comment.