Skip to content

Commit

Permalink
fix(cf): server group header build links should precede images (#7027)
Browse files Browse the repository at this point in the history
In the (currently unlikely) event that images and build info are both available, the images should not be first.
  • Loading branch information
claymccoy authored and Jon Schneider committed May 21, 2019
1 parent 59b69b8 commit 8982b34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ export class SequenceAndBuildAndImages extends React.Component<IServerGroupHeade
{docker.image}:{docker.tag || docker.digest}
</a>
)}
{!!images && <ImageList {...this.props} />}
{(!!ciBuild || !!appArtifact) && (
<span>
{!!appArtifact.version && <span> ({appArtifact.version})</span>}
Expand All @@ -142,6 +141,7 @@ export class SequenceAndBuildAndImages extends React.Component<IServerGroupHeade
)}
</span>
)}
{!!images && <ImageList {...this.props} />}
</div>
);
}
Expand Down

0 comments on commit 8982b34

Please sign in to comment.