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

Put boundary spaces around crumb names so double-clicking doesn't flip out

Summary: Occasionally, double clicking crumbs to select them is useful.

Test Plan: {F1107226}

Reviewers: chad

Reviewed By: chad

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

+5 -1
+5 -1
src/view/phui/PHUICrumbView.php
··· 73 73 ->setIcon($this->icon); 74 74 } 75 75 76 + // Surround the crumb name with spaces so that double clicking it only 77 + // selects the crumb itself. 78 + $name = array(' ', $this->name, ' '); 79 + 76 80 $name = phutil_tag( 77 81 'span', 78 82 array( 79 83 'class' => 'phui-crumb-name', 80 84 ), 81 - $this->name); 85 + $name); 82 86 83 87 $divider = null; 84 88 if (!$this->isLastCrumb) {