Skip to content

Commit

Permalink
fix([Ressource Status]): No check icon for passive services but for a…
Browse files Browse the repository at this point in the history
…ctive services yes (#4309)
  • Loading branch information
Noha-ElAbrouki committed Jun 4, 2024
1 parent e566a36 commit 7402be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centreon/www/front_src/src/Resources/ChecksIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const ChecksIcon = ({
return <Icon Component={SyncDisabledIcon} title={labelChecksDisabled} />;
}

if (equals(has_passive_checks_enabled, false)) {
if (equals(has_active_checks_enabled, false)) {
return (
<Icon Component={SyncProblemIcon} title={labelOnlyPassiveChecksEnabled} />
);
Expand Down

0 comments on commit 7402be3

Please sign in to comment.