@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.

Show file UI box as collapsed in Diffusion

Summary: This UI should have a Collapsed PHUIObjectBoxView.

Test Plan: review a file in sandbox

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+2 -1
+2 -1
src/applications/diffusion/controller/DiffusionBrowseFileController.php
··· 337 337 338 338 $corpus = id(new PHUIObjectBoxView()) 339 339 ->setHeader($header) 340 - ->appendChild($corpus); 340 + ->appendChild($corpus) 341 + ->setCollapsed(true); 341 342 342 343 return $corpus; 343 344 }