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

Remove server side limit on policy control names

Summary: Fixes T12367. CSS here already truncates (or should have been) and is generally more effective. Remove the unneeded server side truncation. Any other UI place these render?

Test Plan: Set Policy to a group name of "Stanford University: Alumni Association and Friends" and see better truncation.

Reviewers: epriestley, eliaspro

Reviewed By: epriestley, eliaspro

Subscribers: eliaspro, Korvin

Maniphest Tasks: T12367

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

+5 -8
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '6875302f', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 - 'core.pkg.css' => 'bb303011', 12 + 'core.pkg.css' => '7e10ec60', 13 13 'core.pkg.js' => '1fa7c0c5', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => '90b30783', ··· 128 128 'rsrc/css/phui/object-item/phui-oi-flush-ui.css' => '9d9685d6', 129 129 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '5c383524', 130 130 'rsrc/css/phui/object-item/phui-oi-simple-ui.css' => 'a8beebea', 131 - 'rsrc/css/phui/phui-action-list.css' => 'f980c059', 131 + 'rsrc/css/phui/phui-action-list.css' => '29bb1c5e', 132 132 'rsrc/css/phui/phui-action-panel.css' => '91c7b835', 133 133 'rsrc/css/phui/phui-badge.css' => '22c0cf4f', 134 134 'rsrc/css/phui/phui-basic-nav-view.css' => 'a0705f53', ··· 780 780 'path-typeahead' => 'f7fc67ec', 781 781 'people-picture-menu-item-css' => 'a06f7f34', 782 782 'people-profile-css' => '4df76faf', 783 - 'phabricator-action-list-view-css' => 'f980c059', 783 + 'phabricator-action-list-view-css' => '29bb1c5e', 784 784 'phabricator-busy' => '59a7976a', 785 785 'phabricator-chatlog-css' => 'd295b020', 786 786 'phabricator-content-source-view-css' => '4b8b05d4',
+1 -5
src/view/form/control/AphrontFormPolicyControl.php
··· 153 153 } 154 154 } 155 155 156 - $policy_short_name = id(new PhutilUTF8StringTruncator()) 157 - ->setMaximumGlyphs(28) 158 - ->truncateString($policy->getName()); 159 - 160 156 $options[$policy->getType()][$policy->getPHID()] = array( 161 - 'name' => $policy_short_name, 157 + 'name' => $policy->getName(), 162 158 'full' => $policy->getName(), 163 159 'icon' => $policy->getIcon(), 164 160 'sort' => phutil_utf8_strtolower($policy->getName()),
+1
webroot/rsrc/css/phui/phui-action-list.css
··· 69 69 color: {$darkbluetext}; 70 70 text-overflow: ellipsis; 71 71 overflow: hidden; 72 + white-space: nowrap; 72 73 } 73 74 74 75 .action-has-icon button.phabricator-action-view-item,