1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-25 16:22:43 +01:00

Fix double-bordered breadcrumbs in Phame blogs

Summary: Ref T13661. The Phame blog main page has a double breadcrumb border in non-live mode.

Test Plan: Viewed a blog page in internal and live modes, saw single border in both cases (previously: double border for internal mode).

Maniphest Tasks: T13661

Differential Revision: https://secure.phabricator.com/D21750
This commit is contained in:
epriestley 2022-04-01 11:47:17 -07:00
parent 6c2c80a373
commit 5ce7f803f9

View file

@ -103,7 +103,8 @@ final class PhameBlogViewController extends PhameLiveController {
->setDescription($description)
->setImage($blog->getProfileImageURI());
$crumbs = $this->buildApplicationCrumbs();
$crumbs = $this->buildApplicationCrumbs()
->setBorder(false);
$page = $this->newPage()
->setTitle($blog->getName())