mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
Set Flush on a few Dialogs
Summary: Sets layout as flush when rendering diff table or timeline in a Dialog Test Plan: Tested each Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D10194
This commit is contained in:
parent
42258ce0be
commit
417b6bbe41
2 changed files with 2 additions and 0 deletions
|
@ -73,6 +73,7 @@ final class PhabricatorApplicationTransactionCommentHistoryController
|
||||||
$dialog = id(new AphrontDialogView())
|
$dialog = id(new AphrontDialogView())
|
||||||
->setUser($user)
|
->setUser($user)
|
||||||
->setWidth(AphrontDialogView::WIDTH_FULL)
|
->setWidth(AphrontDialogView::WIDTH_FULL)
|
||||||
|
->setFlush(true)
|
||||||
->setTitle(pht('Comment History'));
|
->setTitle(pht('Comment History'));
|
||||||
|
|
||||||
$dialog->appendChild($view);
|
$dialog->appendChild($view);
|
||||||
|
|
|
@ -28,6 +28,7 @@ final class PhabricatorApplicationTransactionDetailController
|
||||||
->setUser($viewer)
|
->setUser($viewer)
|
||||||
->setTitle(pht('Change Details'))
|
->setTitle(pht('Change Details'))
|
||||||
->setWidth(AphrontDialogView::WIDTH_FULL)
|
->setWidth(AphrontDialogView::WIDTH_FULL)
|
||||||
|
->setFlush(true)
|
||||||
->appendChild($details)
|
->appendChild($details)
|
||||||
->addCancelButton($cancel_uri);
|
->addCancelButton($cancel_uri);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue