Skip to content

Commit

Permalink
fix(ui): Add icon when target group registration in progress (#7502)
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyhebebrand authored and christopherthielen committed Oct 8, 2019
1 parent babbe88 commit 438d22c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export class InstanceLoadBalancerHealth extends React.Component<IInstanceLoadBal
icon = <span className="glyphicon glyphicon-Up-triangle" />;
} else if (health === 'OutOfService' || health === 'Down') {
icon = <span className="glyphicon glyphicon-Down-triangle" />;
} else if (health === 'Starting') {
icon = <span className="glyphicon glyphicon-Starting-triangle" />;
}

// We need to continue injecting spaces so that angular and react components align
Expand Down

0 comments on commit 438d22c

Please sign in to comment.