Skip to content
Snippets Groups Projects
Commit 6786d3b1 authored by Christopher Johnson's avatar Christopher Johnson
Browse files

updates to upstream 5 Oct 4d5278af1148f211d52244e3fb61712ed24b9d1f

Bug:T110443
Change-Id: Iaa98d82fb9eb1c7577f95eea3361b2ef68a8100f
parent 6d337dd0
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ final class SprintBoardColumnDetailController
new PhabricatorProjectColumnTransactionQuery());
$timeline->setShouldTerminate(true);
$title = pht('%s', $column->getDisplayName());
$title = $column->getDisplayName();
$header = $this->buildHeaderView($column);
$actions = $this->buildActionView($column);
......@@ -113,15 +113,6 @@ final class SprintBoardColumnDetailController
->setObject($column)
->setActionList($actions);
$descriptions = PhabricatorPolicyQuery::renderPolicyDescriptions(
$viewer,
$column);
$properties->addProperty(
pht('Editable By'),
$descriptions[PhabricatorPolicyCapability::CAN_EDIT]);
$limit = $column->getPointLimit();
$properties->addProperty(
pht('Point Limit'),
......
......@@ -190,10 +190,10 @@ final class SprintUIObjectBoxView extends AphrontView {
}
public function render() {
require_celerity_resource('phui-object-box-css', 'sprint');
$header = $this->header;
if ($this->headerText) {
$header = id(new PHUIHeaderView())
->setHeader($this->headerText);
......@@ -204,6 +204,7 @@ final class SprintUIObjectBoxView extends AphrontView {
if (!$header) {
$header = id(new PHUIHeaderView());
}
Javelin::initBehavior('phabricator-reveal-content');
$hide_action_id = celerity_generate_unique_node_id();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment