mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 05:42:40 +01:00
Fix Push Log rendering of query results in redesign
Summary: Fixes T8698. This isn't actually a table. Test Plan: Viewed push log, no more fatal. Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8698 Differential Revision: https://secure.phabricator.com/D13468
This commit is contained in:
parent
a5e8bbf3f4
commit
e576ef4bfe
1 changed files with 3 additions and 5 deletions
|
@ -103,15 +103,13 @@ final class PhabricatorRepositoryPushLogSearchEngine
|
||||||
PhabricatorSavedQuery $query,
|
PhabricatorSavedQuery $query,
|
||||||
array $handles) {
|
array $handles) {
|
||||||
|
|
||||||
$table = id(new DiffusionPushLogListView())
|
$content = id(new DiffusionPushLogListView())
|
||||||
->setUser($this->requireViewer())
|
->setUser($this->requireViewer())
|
||||||
->setHandles($handles)
|
->setHandles($handles)
|
||||||
->setLogs($logs);
|
->setLogs($logs);
|
||||||
|
|
||||||
$result = new PhabricatorApplicationSearchResultView();
|
return id(new PhabricatorApplicationSearchResultView())
|
||||||
$result->setTable($table);
|
->setContent($content);
|
||||||
|
|
||||||
return $result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue