mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
Don't show 'needs review' on DifferentialObjects
Summary: This text is overly repetitive and is not super important. Keeps the other states. Also - Easier to parse reviewers now - Mobile is less janky Test Plan: reload my list of diffs {F138756} Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D8707
This commit is contained in:
parent
c408168c25
commit
3b33089de7
1 changed files with 4 additions and 1 deletions
|
@ -138,7 +138,10 @@ final class DifferentialRevisionListView extends AphrontView {
|
||||||
$item->addAttribute($draft);
|
$item->addAttribute($draft);
|
||||||
}
|
}
|
||||||
|
|
||||||
$item->addAttribute($status_name);
|
/* Most things 'Need Review', so accept it's the default */
|
||||||
|
if ($status != ArcanistDifferentialRevisionStatus::NEEDS_REVIEW) {
|
||||||
|
$item->addAttribute($status_name);
|
||||||
|
}
|
||||||
|
|
||||||
// Author
|
// Author
|
||||||
$author_handle = $this->handles[$revision->getAuthorPHID()];
|
$author_handle = $this->handles[$revision->getAuthorPHID()];
|
||||||
|
|
Loading…
Reference in a new issue