Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15432854
D14189.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
D14189.diff
View Options
diff --git a/src/applications/owners/controller/PhabricatorOwnersDetailController.php b/src/applications/owners/controller/PhabricatorOwnersDetailController.php
--- a/src/applications/owners/controller/PhabricatorOwnersDetailController.php
+++ b/src/applications/owners/controller/PhabricatorOwnersDetailController.php
@@ -76,27 +76,28 @@
'auditorPHIDs' => $package->getPHID(),
));
+ $status_concern = DiffusionCommitQuery::AUDIT_STATUS_CONCERN;
+
$attention_commits = id(new DiffusionCommitQuery())
->setViewer($request->getUser())
->withAuditorPHIDs(array($package->getPHID()))
- ->withAuditStatus(DiffusionCommitQuery::AUDIT_STATUS_CONCERN)
+ ->withAuditStatus($status_concern)
->needCommitData(true)
->setLimit(10)
->execute();
- if ($attention_commits) {
- $view = id(new PhabricatorAuditListView())
- ->setUser($viewer)
- ->setCommits($attention_commits);
-
- $commit_views[] = array(
- 'view' => $view,
- 'header' => pht('Commits in this Package that Need Attention'),
- 'button' => id(new PHUIButtonView())
- ->setTag('a')
- ->setHref($commit_uri->alter('status', 'open'))
- ->setText(pht('View All Problem Commits')),
- );
- }
+ $view = id(new PhabricatorAuditListView())
+ ->setUser($viewer)
+ ->setNoDataString(pht('This package has no open problem commits.'))
+ ->setCommits($attention_commits);
+
+ $commit_views[] = array(
+ 'view' => $view,
+ 'header' => pht('Commits in this Package that Need Attention'),
+ 'button' => id(new PHUIButtonView())
+ ->setTag('a')
+ ->setHref($commit_uri->alter('status', $status_concern))
+ ->setText(pht('View All Problem Commits')),
+ );
$all_commits = id(new DiffusionCommitQuery())
->setViewer($request->getUser())
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 7:58 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7382547
Default Alt Text
D14189.diff (1 KB)
Attached To
Mode
D14189: Fix button for "All Problem Commits" on Owners packages
Attached
Detach File
Event Timeline
Log In to Comment