From 8982b34874cefc7e2862d05acb735e808b62703d Mon Sep 17 00:00:00 2001 From: Clay McCoy Date: Tue, 21 May 2019 09:00:27 -0500 Subject: [PATCH] fix(cf): server group header build links should precede images (#7027) In the (currently unlikely) event that images and build info are both available, the images should not be first. --- app/scripts/modules/core/src/serverGroup/ServerGroupHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/modules/core/src/serverGroup/ServerGroupHeader.tsx b/app/scripts/modules/core/src/serverGroup/ServerGroupHeader.tsx index dbf077d3658..ea457c5c5f6 100644 --- a/app/scripts/modules/core/src/serverGroup/ServerGroupHeader.tsx +++ b/app/scripts/modules/core/src/serverGroup/ServerGroupHeader.tsx @@ -131,7 +131,6 @@ export class SequenceAndBuildAndImages extends React.Component )} - {!!images && } {(!!ciBuild || !!appArtifact) && ( {!!appArtifact.version && ({appArtifact.version})} @@ -142,6 +141,7 @@ export class SequenceAndBuildAndImages extends React.Component )} + {!!images && } ); }