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

Allow dashboard panels to be found by monogram

Summary:
Just add the monogram to the datasource's `name` field
so that it will match when typing Wnn in the typeahead field.

Test Plan:
Tested locally on my dev phab. Try searching for a panel
by monogram in the 'Add existing panel' dialog on the
'arrange workboard' interface.

Previously: typing W123 showed no results.

After this change: typing W123 finds the panel W123

Reviewers: chad, epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

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

+1 -2
+1 -2
src/applications/dashboard/typeahead/PhabricatorDashboardPanelDatasource.php
··· 42 42 $properties = $panel->getProperties(); 43 43 44 44 $result = id(new PhabricatorTypeaheadResult()) 45 - ->setName($panel->getName()) 46 - ->setDisplayName($monogram.' '.$panel->getName()) 45 + ->setName($monogram.' '.$panel->getName()) 47 46 ->setPHID($id) 48 47 ->setIcon($impl->getIcon()) 49 48 ->addAttribute($type_text);