mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fixes for the project page
Summary: Wrong header, should say Project instead of People and two buttons had "Project Project" Test Plan: UI fixes, no real test plan needed Reviewers: tuomaspelkonen, aran Commenters: tuomaspelkonen, aran CC: aran, tuomaspelkonen, hsb, epriestley Revert Plan: No plan needed, just revert this UI fix revision Differential Revision: 338
This commit is contained in:
parent
1b208f0c58
commit
4a8ffe4b67
1 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ class PhabricatorProjectListController
|
|||
'class' => 'small grey button',
|
||||
'href' => '/project/view/'.$project->getID().'/',
|
||||
),
|
||||
'View Project Project Profile'),
|
||||
'View Project Profile'),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -52,13 +52,13 @@ class PhabricatorProjectListController
|
|||
|
||||
$panel = new AphrontPanelView();
|
||||
$panel->appendChild($table);
|
||||
$panel->setHeader('People');
|
||||
$panel->setCreateButton('Create New Project Project', '/project/edit/');
|
||||
$panel->setHeader('Project');
|
||||
$panel->setCreateButton('Create New Project', '/project/edit/');
|
||||
|
||||
return $this->buildStandardPageResponse(
|
||||
$panel,
|
||||
array(
|
||||
'title' => 'Project Projects',
|
||||
'title' => 'Projects',
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue