@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 show continuation lines in "stacked action" comment previews

Summary:
Ref T10698. Currently, we show the spacer/continuation lines around previews, but these don't make sense in previews.

(Other stuff also uses this code so I can't simply remove `spacer`.)

Test Plan:
Before:

{F1199924}

After:

{F1199925}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10698

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

+1 -4
+1 -4
webroot/rsrc/js/application/transactions/behavior-comment-actions.js
··· 148 148 } else { 149 149 JX.DOM.setContent( 150 150 JX.$(config.timelineID), 151 - [ 152 - JX.$H(response.spacer), 153 - JX.$H(response.xactions.join(response.spacer)) 154 - ]); 151 + JX.$H(response.xactions.join(''))); 155 152 JX.DOM.show(panel); 156 153 } 157 154 }