mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 13:52:40 +01:00
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
This commit is contained in:
parent
1507e8dc8b
commit
ad7239d64c
1 changed files with 1 additions and 4 deletions
|
@ -148,10 +148,7 @@ JX.behavior('comment-actions', function(config) {
|
||||||
} else {
|
} else {
|
||||||
JX.DOM.setContent(
|
JX.DOM.setContent(
|
||||||
JX.$(config.timelineID),
|
JX.$(config.timelineID),
|
||||||
[
|
JX.$H(response.xactions.join('')));
|
||||||
JX.$H(response.spacer),
|
|
||||||
JX.$H(response.xactions.join(response.spacer))
|
|
||||||
]);
|
|
||||||
JX.DOM.show(panel);
|
JX.DOM.show(panel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue