1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-02 18:08:26 +01:00

Remove unusual "Created" element from Build Plan curtain UI

Summary: Ref T13088. Build Plans currently have a "Created" date in the right-hand "Curtain" UI, but this is unusual and the creation date is evident from the timeline. It's also not obvious why anyone would care. Remove it for simplicity/consistency. I think this may have just been a placeholder during initial implementation.

Test Plan: Viewed a build plan, no more "Created" element.

Reviewers: amckinley

Reviewed By: amckinley

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T13088

Differential Revision: https://secure.phabricator.com/D20216
This commit is contained in:
epriestley 2019-02-26 04:32:23 -08:00
parent b28b05342b
commit 41c03bab39

View file

@ -263,11 +263,6 @@ final class HarbormasterPlanViewController extends HarbormasterPlanController {
->setDisabled(!$can_run) ->setDisabled(!$can_run)
->setIcon('fa-play-circle')); ->setIcon('fa-play-circle'));
$curtain->addPanel(
id(new PHUICurtainPanelView())
->setHeaderText(pht('Created'))
->appendChild(phabricator_datetime($plan->getDateCreated(), $viewer)));
return $curtain; return $curtain;
} }