mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-31 17:08:22 +01:00
Add border to crumbs in misc apps
Summary: Test Diviner, Chatlog Test Plan: Test Diviner, Chatlog Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11578
This commit is contained in:
parent
cd17311907
commit
42c5ef2101
3 changed files with 3 additions and 0 deletions
|
@ -191,6 +191,7 @@ final class PhabricatorChatLogChannelLogController
|
|||
|
||||
$crumbs = $this
|
||||
->buildApplicationCrumbs()
|
||||
->setBorder(true)
|
||||
->addTextCrumb($channel->getChannelName(), $uri);
|
||||
|
||||
$form = id(new AphrontFormView())
|
||||
|
|
|
@ -26,6 +26,7 @@ final class DivinerBookController extends DivinerController {
|
|||
}
|
||||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs->setBorder(true);
|
||||
|
||||
$crumbs->addTextCrumb(
|
||||
$book->getShortTitle(),
|
||||
|
|
|
@ -15,6 +15,7 @@ final class DivinerMainController extends DivinerController {
|
|||
->execute();
|
||||
|
||||
$crumbs = $this->buildApplicationCrumbs();
|
||||
$crumbs->setBorder(true);
|
||||
$crumbs->addTextCrumb(pht('Books'));
|
||||
|
||||
$search_icon = id(new PHUIIconView())
|
||||
|
|
Loading…
Add table
Reference in a new issue