diff --git a/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php b/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php index 92e1980d8c..c3427fe46f 100644 --- a/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php +++ b/src/applications/harbormaster/phid/HarbormasterBuildStepPHIDType.php @@ -1,41 +1,41 @@ withPHIDs($phids); } public function loadHandles( PhabricatorHandleQuery $query, array $handles, array $objects) { foreach ($handles as $phid => $handle) { $build_step = $objects[$phid]; $id = $build_step->getID(); $name = $build_step->getName(); $handle ->setName($name) ->setFullName(pht('Build Step %d: %s', $id, $name)) - ->setURI("/harbormaster/step/{$id}/edit/"); + ->setURI("/harbormaster/step/view/{$id}/"); } } }