diff --git a/src/applications/harbormaster/controller/HarbormasterBuildViewController.php b/src/applications/harbormaster/controller/HarbormasterBuildViewController.php index 6b41e14b86..685c45d8d1 100644 --- a/src/applications/harbormaster/controller/HarbormasterBuildViewController.php +++ b/src/applications/harbormaster/controller/HarbormasterBuildViewController.php @@ -331,10 +331,6 @@ final class HarbormasterBuildViewController ->setActionList($actions); $box->addPropertyList($properties); - $properties->addProperty( - pht('Status'), - $this->getStatus($build)); - $handles = id(new PhabricatorHandleQuery()) ->setViewer($viewer) ->withPHIDs(array( @@ -350,6 +346,10 @@ final class HarbormasterBuildViewController pht('Build Plan'), $handles[$build->getBuildPlanPHID()]->renderLink()); + $properties->addProperty( + pht('Status'), + $this->getStatus($build)); + } private function getStatus(HarbormasterBuild $build) {