Skip to content

Commit

Permalink
fix(webapp): change health icon position
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Oct 10, 2022
1 parent 5463b4e commit 22f2432
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion webapp/src/components/HealthCheck/InfoModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ const InfoModal = () => {
<>
<HelpOutlineIcon
className={classes.helpIcon}
onClick={handlePopoverOpen}
onClick={(e) => {
handlePopoverOpen(e.target)
}}
/>
<Tooltip
anchorEl={anchorEl}
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/HealthCheck/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const HealthCheck = ({ children, status }) => {

return (
<div className={classes.icon}>
{status !== undefined && getIcon(status)} {children}
{children} {status !== undefined && getIcon(status)}
</div>
)
}
Expand Down

0 comments on commit 22f2432

Please sign in to comment.