mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Increase result set to 100 from 25 for "attach" dialog
Summary: See T1254, until this gets paginated properly we can at least show more results. 25 is pretty anemic. Test Plan: Tweaked limit, verified result count was affected. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1254 Differential Revision: https://secure.phabricator.com/D2513
This commit is contained in:
parent
3a1ee00335
commit
b624dc4e7b
1 changed files with 1 additions and 0 deletions
|
@ -55,6 +55,7 @@ final class PhabricatorSearchSelectController
|
|||
}
|
||||
|
||||
$query->setParameter('exclude', $request->getStr('exclude'));
|
||||
$query->setParameter('limit', 100);
|
||||
|
||||
$engine = PhabricatorSearchEngineSelector::newSelector()->newEngine();
|
||||
$results = $engine->executeSearch($query);
|
||||
|
|
Loading…
Reference in a new issue