@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -4
+2 -4
src/applications/drydock/query/DrydockLeaseSearchEngine.php
··· 93 93 ->setUser($this->requireViewer()) 94 94 ->setLeases($leases); 95 95 96 - $result = new PhabricatorApplicationSearchResultView(); 97 - $result->setTable($list); 98 - 99 - return $result; 96 + return id(new PhabricatorApplicationSearchResultView()) 97 + ->setContent($list); 100 98 } 101 99 102 100 }