@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix italics issue with nux state on homepage

Summary: We moved to having "no data" strings render in italics, but sometimes it doesn't make sense. This renders out the panel a little more expected.

Test Plan: Clean install of Phabricator, read home page activity box.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D17415

+11 -5
+11 -5
src/applications/home/view/PHUIHomeView.php
··· 184 184 EOT 185 185 ); 186 186 } 187 - $welcome = new PHUIRemarkupView($viewer, $content); 188 187 189 - $list = new PHUIObjectItemListView(); 190 - $view = new PhabricatorApplicationSearchResultView(); 191 - $view->setObjectList($list); 192 - $view->setNoDataString($welcome); 188 + if ($results) { 189 + $list = new PHUIObjectItemListView(); 190 + $view = new PhabricatorApplicationSearchResultView(); 191 + $view->setObjectList($list); 192 + } else { 193 + $content = id(new PHUIBoxView()) 194 + ->appendChild(new PHUIRemarkupView($viewer, $content)) 195 + ->addClass('mlt mlb msr msl'); 196 + $view = new PhabricatorApplicationSearchResultView(); 197 + $view->setContent($content); 198 + } 193 199 } 194 200 195 201 $title = pht('Recent Activity');