Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15402033
D15102.id36463.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D15102.id36463.diff
View Options
diff --git a/src/applications/project/controller/PhabricatorProjectProfileController.php b/src/applications/project/controller/PhabricatorProjectProfileController.php
--- a/src/applications/project/controller/PhabricatorProjectProfileController.php
+++ b/src/applications/project/controller/PhabricatorProjectProfileController.php
@@ -31,6 +31,7 @@
}
$properties = $this->buildPropertyListView($project);
+
$watch_action = $this->renderWatchAction($project);
$header->addActionLink($watch_action);
@@ -119,6 +120,10 @@
PhabricatorCustomField::ROLE_VIEW);
$field_list->appendFieldsToPropertyList($project, $viewer, $view);
+ if ($view->isEmpty()) {
+ return null;
+ }
+
$view = id(new PHUIBoxView())
->setColor(PHUIBoxView::GREY)
->appendChild($view)
diff --git a/src/view/phui/PHUIPropertyListView.php b/src/view/phui/PHUIPropertyListView.php
--- a/src/view/phui/PHUIPropertyListView.php
+++ b/src/view/phui/PHUIPropertyListView.php
@@ -115,6 +115,16 @@
$this->invokedWillRenderEvent = true;
}
+ public function isEmpty() {
+ $this->invokeWillRenderEvent();
+
+ if ($this->parts) {
+ return false;
+ }
+
+ return true;
+ }
+
public function render() {
$this->invokeWillRenderEvent();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 18, 8:14 PM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7538165
Default Alt Text
D15102.id36463.diff (1 KB)
Attached To
Mode
D15102: Don't render anything on project homepages if there are no properties at all
Attached
Detach File
Event Timeline
Log In to Comment