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

Don't wrap task/revision titles in graph tables

Summary:
Fixes T11274. When task titles are long, we currently wrap stuff and the trace graph renders real weird.

Instead, prevent taks/revision titles from wrapping/overflowing.

(This works in a slightly weird way, and `text-overflow: ellipsis;` has no apparent effect on any of the containers.)

Test Plan: {F1712394}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11274

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

+4
+2
src/infrastructure/graph/DifferentialRevisionGraph.php
··· 54 54 $link = $viewer->renderHandle($phid); 55 55 } 56 56 57 + $link = AphrontTableView::renderSingleDisplayLine($link); 58 + 57 59 return array( 58 60 $trace, 59 61 $status,
+2
src/infrastructure/graph/ManiphestTaskGraph.php
··· 67 67 $link = $viewer->renderHandle($phid); 68 68 } 69 69 70 + $link = AphrontTableView::renderSingleDisplayLine($link); 71 + 70 72 return array( 71 73 $trace, 72 74 $status,