Skip to content

Commit

Permalink
Make package filter case-insensitive.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchell-as committed Dec 5, 2023
1 parent d07be32 commit ac88852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/runners/packages/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func newFilteredRequirementsTable(requirements []*gqlModel.Requirement, filter s

rows := make([]packageRow, 0, len(requirements))
for _, req := range requirements {
if !strings.Contains(req.Requirement, filter) {
if !strings.Contains(strings.ToLower(req.Requirement), strings.ToLower(filter)) {
continue
}

Expand Down

0 comments on commit ac88852

Please sign in to comment.