Skip to content

Commit

Permalink
Fix filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
adamruzicka authored and kmalyjur committed Jan 28, 2025
1 parent ba7145b commit 9b83abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack/JobInvocationDetail/JobInvocationHostTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const JobInvocationHostTable = ({
const parts = [dropdownFilterClause, search];
return parts
.filter(x => x)
.map(fragment => `(${fragment}})`)
.map(fragment => `(${fragment})`)
.join(' AND ');
};

Expand Down

0 comments on commit 9b83abd

Please sign in to comment.