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

Set Flush on a few Dialogs

Summary: Sets layout as flush when rendering diff table or timeline in a Dialog

Test Plan: Tested each

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+2
+1
src/applications/transactions/controller/PhabricatorApplicationTransactionCommentHistoryController.php
··· 73 73 $dialog = id(new AphrontDialogView()) 74 74 ->setUser($user) 75 75 ->setWidth(AphrontDialogView::WIDTH_FULL) 76 + ->setFlush(true) 76 77 ->setTitle(pht('Comment History')); 77 78 78 79 $dialog->appendChild($view);
+1
src/applications/transactions/controller/PhabricatorApplicationTransactionDetailController.php
··· 28 28 ->setUser($viewer) 29 29 ->setTitle(pht('Change Details')) 30 30 ->setWidth(AphrontDialogView::WIDTH_FULL) 31 + ->setFlush(true) 31 32 ->appendChild($details) 32 33 ->addCancelButton($cancel_uri); 33 34