mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Make Legalpad documents have a little document icon in typeaheads
Summary: Ref T3116. Test Plan: See screenshot. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T3116 Differential Revision: https://secure.phabricator.com/D9773
This commit is contained in:
parent
88d9366701
commit
bd9584d663
1 changed files with 4 additions and 4 deletions
|
@ -264,11 +264,11 @@ final class PhabricatorTypeaheadCommonDatasourceController
|
|||
$documents = id(new LegalpadDocumentQuery())
|
||||
->setViewer($viewer)
|
||||
->execute();
|
||||
$documents = mpull($documents, 'getTitle', 'getPHID');
|
||||
foreach ($documents as $phid => $title) {
|
||||
foreach ($documents as $document) {
|
||||
$results[] = id(new PhabricatorTypeaheadResult())
|
||||
->setPHID($phid)
|
||||
->setName($title);
|
||||
->setPHID($document->getPHID())
|
||||
->setIcon('fa-file-text-o')
|
||||
->setName($document->getMonogram().' '.$document->getTitle());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue