@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 put a spacer line on the bottom of previews

Summary: Fixes T8182. See screenshot in that task. We currently render a line to nowhere at the bottom of these previews. Instead, only render a line at the top.

Test Plan:
{F409078}

Also looked at a couple other applications that use this and they looked correct.

Reviewers: btrahan, lpriestley, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T8182

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

+10 -11
+9 -9
resources/celerity/map.php
··· 401 401 'rsrc/js/application/search/behavior-reorder-queries.js' => 'e9581f08', 402 402 'rsrc/js/application/slowvote/behavior-slowvote-embed.js' => '887ad43f', 403 403 'rsrc/js/application/transactions/behavior-show-older-transactions.js' => 'dbbf48b6', 404 - 'rsrc/js/application/transactions/behavior-transaction-comment-form.js' => '9f7309fb', 404 + 'rsrc/js/application/transactions/behavior-transaction-comment-form.js' => 'b23b49e6', 405 405 'rsrc/js/application/transactions/behavior-transaction-list.js' => '13c739ea', 406 406 'rsrc/js/application/typeahead/behavior-typeahead-browse.js' => '635de1ec', 407 407 'rsrc/js/application/typeahead/behavior-typeahead-search.js' => '93d0c9e3', ··· 610 610 'javelin-behavior-phabricator-search-typeahead' => '048330fa', 611 611 'javelin-behavior-phabricator-show-older-transactions' => 'dbbf48b6', 612 612 'javelin-behavior-phabricator-tooltips' => '3ee3408b', 613 - 'javelin-behavior-phabricator-transaction-comment-form' => '9f7309fb', 613 + 'javelin-behavior-phabricator-transaction-comment-form' => 'b23b49e6', 614 614 'javelin-behavior-phabricator-transaction-list' => '13c739ea', 615 615 'javelin-behavior-phabricator-watch-anchor' => '9f36c42d', 616 616 'javelin-behavior-phame-post-preview' => 'be807912', ··· 1581 1581 'javelin-dom', 1582 1582 'javelin-vector', 1583 1583 ), 1584 - '9f7309fb' => array( 1585 - 'javelin-behavior', 1586 - 'javelin-dom', 1587 - 'javelin-util', 1588 - 'javelin-request', 1589 - 'phabricator-shaped-request', 1590 - ), 1591 1584 'a0b57eb8' => array( 1592 1585 'javelin-behavior', 1593 1586 'javelin-dom', ··· 1676 1669 'javelin-install', 1677 1670 'javelin-dom', 1678 1671 'javelin-reactor-dom', 1672 + ), 1673 + 'b23b49e6' => array( 1674 + 'javelin-behavior', 1675 + 'javelin-dom', 1676 + 'javelin-util', 1677 + 'javelin-request', 1678 + 'phabricator-shaped-request', 1679 1679 ), 1680 1680 'b2b4fbaf' => array( 1681 1681 'javelin-behavior',
+1 -2
webroot/rsrc/js/application/transactions/behavior-transaction-comment-form.js
··· 26 26 JX.$(config.timelineID), 27 27 [ 28 28 JX.$H(response.spacer), 29 - JX.$H(response.xactions.join(response.spacer)), 30 - JX.$H(response.spacer) 29 + JX.$H(response.xactions.join(response.spacer)) 31 30 ]); 32 31 JX.DOM.show(panel); 33 32 }