Skip to content

Commit

Permalink
fix source filter for issues table component (#1651)
Browse files Browse the repository at this point in the history
  • Loading branch information
abrugaro committed Apr 28, 2023
1 parent 1d132d4 commit 69c51fa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -325,7 +325,7 @@ export const IssuesTable: React.FC<IIssuesTableProps> = ({ applicationId }) => {
let isTargetCompliant = true;
const selectedTargets = debouncedFilters.get("targetTechnology") || [];
if (selectedTargets.length > 0) {
isSourceCompliant = selectedTargets.some((f) => {
isTargetCompliant = selectedTargets.some((f) => {
return item.targetTechnologies?.includes(f.key);
});
}
Expand Down

0 comments on commit 69c51fa

Please sign in to comment.