Skip to content

Commit

Permalink
Merge pull request #2929 from ActiveState/mitchell/dx-401
Browse files Browse the repository at this point in the history
Make package filter case-insensitive.
  • Loading branch information
mitchell-as authored Dec 6, 2023
2 parents 66c66c5 + ac88852 commit e3a9451
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 e3a9451

Please sign in to comment.