Skip to content

Commit

Permalink
Filter correctly the check results by host
Browse files Browse the repository at this point in the history
  • Loading branch information
arbulu89 committed Apr 27, 2022
1 parent c4adc9b commit 0c336b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion assets/js/components/ClusterDetails/ChecksResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ export const ChecksResults = () => {
{getResultIcon(
cluster.checks_execution,
cluster?.checks_results.find(
(result) => result.check_id === checkId
(result) =>
result.check_id === checkId &&
result.host_id === host_id
)?.result
)}
</td>
Expand Down

0 comments on commit 0c336b6

Please sign in to comment.