@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 one more remarkup line wrapping issue

Summary:
Ran into this while fixing T11098#179088.

The "Transaction Type" details in the conduit autogenerated documentation for `*.edit` endpoints still wraps incorrectly.

Test Plan: Purged remarkup cache, reloaded page, got full-width text.

Reviewers: avivey, chad

Reviewed By: chad

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

+5
+5
src/applications/transactions/editengine/PhabricatorEditEngineAPIMethod.php
··· 158 158 159 159 $view = new PHUIRemarkupView($viewer, $remarkup); 160 160 161 + $view->setRemarkupOptions( 162 + array( 163 + PHUIRemarkupView::OPTION_PRESERVE_LINEBREAKS => false, 164 + )); 165 + 161 166 return id(new PHUIBoxView()) 162 167 ->appendChild($view) 163 168 ->addPadding(PHUI::PADDING_LARGE);