From fb1a6575dc7460cb70f929f52a705fe1aecabfb6 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Sat, 8 Dec 2012 16:50:44 -0800 Subject: [PATCH] fix inline comment for new differential fluid view Summary: we need to render left and right* classes as appropriate, plus colspan for the right Test Plan: made inline comments and it was no longer borked Reviewers: vrana, epriestley, chad Reviewed By: chad CC: aran, Korvin Maniphest Tasks: T2005 Differential Revision: https://secure.phabricator.com/D4131 --- .../view/DifferentialInlineCommentEditView.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/applications/differential/view/DifferentialInlineCommentEditView.php b/src/applications/differential/view/DifferentialInlineCommentEditView.php index fa48ba3cc7..cc62d2eb26 100644 --- a/src/applications/differential/view/DifferentialInlineCommentEditView.php +++ b/src/applications/differential/view/DifferentialInlineCommentEditView.php @@ -65,9 +65,17 @@ final class DifferentialInlineCommentEditView extends AphrontView { $this->renderBody()); if ($this->onRight) { - $core = ''.$content.''; + $core = + ''. + ''. + ''. + ''.$content.''; } else { - $core = ''.$content.''; + $core = + ''. + ''.$content.''. + ''. + ''; } return ''.$core.'
';