Skip to content

Commit

Permalink
Fixes #37038 - Use correct total and owned links
Browse files Browse the repository at this point in the history
for host statuses in error column in Monitor > Host statuses.
  • Loading branch information
adamruzicka committed Jan 10, 2024
1 parent bf39cd0 commit 39ed51c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ export const selectHostStatusWarnOwnedPath = (state, statusName) =>
selectHostStatus(state, statusName)?.warn_owned_path;

export const selectHostStatusErrorTotalPath = (state, statusName) =>
selectHostStatus(state, statusName)?.error_owned_path;
selectHostStatus(state, statusName)?.error_total_path;

export const selectHostStatusErrorOwnedPath = (state, statusName) =>
selectHostStatus(state, statusName)?.error_total_path;
selectHostStatus(state, statusName)?.error_owned_path;
/* eslint-enable camelcase */

export const selectHostStatusTotalPaths = (state, statusName) => ({
Expand Down

0 comments on commit 39ed51c

Please sign in to comment.