@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Show build plan name on Harbormaster plan view controller

Summary: Ref T8096. This shows the build plan name on the Harbormaster build plan view controller. Without this, the name is not displayed anywhere on the page when you're viewing a build plan's configuration (which makes things confusing if you're updating a bunch of build plans at once).

Test Plan: Viewed a build plan, saw the build plan name on the page.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Projects: #harbormaster

Maniphest Tasks: T8096

Differential Revision: https://secure.phabricator.com/D13356

J Rhodes 44dee47c 65cdfa29

+2 -2
+2 -2
src/applications/harbormaster/controller/HarbormasterPlanViewController.php
··· 27 27 new HarbormasterBuildPlanTransactionQuery()); 28 28 $timeline->setShouldTerminate(true); 29 29 30 - $title = pht('Plan %d', $id); 30 + $title = $plan->getName(); 31 31 32 32 $header = id(new PHUIHeaderView()) 33 - ->setHeader($title) 33 + ->setHeader($plan->getName()) 34 34 ->setUser($viewer) 35 35 ->setPolicyObject($plan); 36 36