Skip to content

Commit

Permalink
only show issues of level warning
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall committed Aug 13, 2024
1 parent 5a6d04d commit b2445c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/services/performanceDbApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ export default {
case
when (rle.status != '200') then 'Error'
when (it.severity = 'error') then 'Issue'
when (it.severity = 'warning') then 'Warning'
else 'No issues'
end as status,
case
Expand Down Expand Up @@ -199,7 +198,7 @@ ORDER BY
issue_type it ON i.issue_type = it.issue_type
WHERE
p.organisation = '${lpa}' AND p.dataset = '${datasetId}'
AND (it.severity == 'error' OR it.severity == 'warning')
AND it.severity == 'error'
GROUP BY i.issue_type
ORDER BY it.severity`

Expand Down

0 comments on commit b2445c7

Please sign in to comment.