mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22:41 +01:00
Fix Drydock lease list view in redesign branch
Summary: Fixes T8655. This isn't actually a table -- just use `setContent()`. Test Plan: Loaded leases in redesign-2015. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8655 Differential Revision: https://secure.phabricator.com/D13431
This commit is contained in:
parent
1a5f986d73
commit
190e290d98
1 changed files with 2 additions and 4 deletions
|
@ -93,10 +93,8 @@ final class DrydockLeaseSearchEngine
|
|||
->setUser($this->requireViewer())
|
||||
->setLeases($leases);
|
||||
|
||||
$result = new PhabricatorApplicationSearchResultView();
|
||||
$result->setTable($list);
|
||||
|
||||
return $result;
|
||||
return id(new PhabricatorApplicationSearchResultView())
|
||||
->setContent($list);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue