@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 Conpherence NUX showing empty Joinable Rooms

Summary: I moved this to setContent with the new search result layout, but failed to update NUX here.

Test Plan: Leave all rooms, get Joinable Rooms with list of 10 rooms.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+1 -7
+1 -7
src/applications/conpherence/view/ConpherenceLayoutView.php
··· 241 241 242 242 $box = id(new PHUIObjectBoxView()) 243 243 ->setHeader($header) 244 - ->setObjectList($view->getObjectList()); 245 - if ($viewer->isLoggedIn()) { 246 - $info = id(new PHUIInfoView()) 247 - ->appendChild(pht('You have not joined any rooms yet.')) 248 - ->setSeverity(PHUIInfoView::SEVERITY_NOTICE); 249 - $box->setInfoView($info); 250 - } 244 + ->setObjectList($view->getContent()); 251 245 252 246 return $box; 253 247 } else {