@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 layout when no project blurb exists.

Summary: If no description, just move other attributes up.

Test Plan: Add a Project with no description, layout looks normal now.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

+6 -4
+6 -4
src/applications/project/controller/PhabricatorProjectListController.php
··· 114 114 ->setHeader($row[0]) 115 115 ->setHref($row[1]) 116 116 ->addIcon($row[3], $row[2]) 117 - ->addIcon('edit', pht('Edit Project'), $row[7]) 118 - ->addAttribute($row[4]) 119 - ->addAttribute($row[5]) 120 - ->addAttribute($row[6]); 117 + ->addIcon('edit', pht('Edit Project'), $row[7]); 118 + if ($row[4]) { 119 + $item->addAttribute($row[4]); 120 + } 121 + $item->addAttribute($row[5]); 122 + $item->addAttribute($row[6]); 121 123 $list->addItem($item); 122 124 } 123 125