Skip to content

Commit

Permalink
Merge branch version/0-43-0-RC1 to adopt changes from PR #2929
Browse files Browse the repository at this point in the history
  • Loading branch information
as-builds committed Dec 6, 2023
2 parents d5b81ea + e3a9451 commit af82e0e
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 af82e0e

Please sign in to comment.