mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Fix symbol search in typeahead
Test Plan: Inputted 'Mac' to search field. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3754
This commit is contained in:
parent
3a8be549d6
commit
7b0c608df8
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ final class PhabricatorTypeaheadCommonDatasourceController
|
||||||
->setName($name)
|
->setName($name)
|
||||||
->setURI($symbol->getURI())
|
->setURI($symbol->getURI())
|
||||||
->setPHID(md5($symbol->getURI())) // Just needs to be unique.
|
->setPHID(md5($symbol->getURI())) // Just needs to be unique.
|
||||||
->setDisplayName($symbol->getName())
|
->setDisplayName($name)
|
||||||
->setDisplayType(strtoupper($lang).' '.ucwords($type).' ('.$proj.')')
|
->setDisplayType(strtoupper($lang).' '.ucwords($type).' ('.$proj.')')
|
||||||
->setPriorityType('symb');
|
->setPriorityType('symb');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue