@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.

[Redesign] Add ActionIcon to home panels

Summary: Ref T8099, adds an action icon similar to dashboards for taking people to the search.

Test Plan: Click on each icon, verify it takes me to correct URL.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8099

Differential Revision: https://secure.phabricator.com/D12974

+5 -1
+5 -1
src/applications/home/controller/PhabricatorHomeMainController.php
··· 319 319 'href' => $href, 320 320 ), 321 321 $title); 322 + $icon = id(new PHUIIconView()) 323 + ->setIconFont('fa-search') 324 + ->setHref($href); 322 325 $header = id(new PHUIHeaderView()) 323 - ->setHeader($title); 326 + ->setHeader($title) 327 + ->addActionIcon($icon); 324 328 return $header; 325 329 } 326 330