Skip to content

Commit

Permalink
Issue Kind is column name instead of Kind
Browse files Browse the repository at this point in the history
  • Loading branch information
JokeWaumans committed Aug 13, 2024
1 parent 9d89df3 commit b46058a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlx/coverity_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ def get_defects(self, stream, filters, column_names):
# apply any filter on issue kind
if filters["kind"]:
# this should be a keyMatcher (columnKey: displayIssueKind)
filter_values = self.handle_attribute_filter(filters["kind"], "Kind", KIND_LIST)
filter_values = self.handle_attribute_filter(filters["kind"], "Issue Kind", KIND_LIST)
if filter_values:
query_filters.append(self.assemble_query_filter("kind", filter_values, "keyMatcher"))
query_filters.append(self.assemble_query_filter("issue kind", filter_values, "keyMatcher"))

# apply any filter on classification
if filters["classification"]:
Expand Down

0 comments on commit b46058a

Please sign in to comment.