Skip to content

Commit

Permalink
fix(core/serverGroup): Add key to running tasks in server group detai…
Browse files Browse the repository at this point in the history
…ls (#4806)
  • Loading branch information
Justin Reynolds committed Feb 6, 2018
1 parent 8bab99f commit 62b98ee
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -44,8 +44,8 @@ const Task = (props: { task: ITask, application: Application }): JSX.Element =>
</strong>
</div>
</div>
{displayableTasks(props.task.steps).map((step) => (
<div className="row">
{displayableTasks(props.task.steps).map((step, index) => (
<div className="row" key={index}>
<div className="col-md-7 col-md-offset-0">
<span className="small"><StatusGlyph item={step}/></span>{' '}{robotToHuman(step.name)}
{step.name === 'waitForUpInstances' && (
Expand Down

0 comments on commit 62b98ee

Please sign in to comment.