mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +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())
|
||||
->setUser($user)
|
||||
->setWidth(AphrontDialogView::WIDTH_FULL)
|
||||
->setFlush(true)
|
||||
->setTitle(pht('Comment History'));
|
||||
|
||||
$dialog->appendChild($view);
|
||||
|
|
|
@ -28,6 +28,7 @@ final class PhabricatorApplicationTransactionDetailController
|
|||
->setUser($viewer)
|
||||
->setTitle(pht('Change Details'))
|
||||
->setWidth(AphrontDialogView::WIDTH_FULL)
|
||||
->setFlush(true)
|
||||
->appendChild($details)
|
||||
->addCancelButton($cancel_uri);
|
||||
|
||||
|
|
Loading…
Reference in a new issue