@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 fatal for diffs with no VCS

Auditors: vrana

+3 -1
+3 -1
src/applications/differential/view/DifferentialRevisionDetailView.php
··· 86 86 $command = 'arc commit'; 87 87 break; 88 88 } 89 - $next_step = phutil_tag('tt', array(), $command); 89 + if ($command) { 90 + $next_step = phutil_tag('tt', array(), $command); 91 + } 90 92 } 91 93 if ($next_step) { 92 94 $properties->addProperty(pht('Next Step'), $next_step);