From ee3cc2afd586d1bef552d8e8e5eb1dc860b3b941 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Sat, 10 Jan 2026 18:48:25 +0100 Subject: [PATCH] Display Query Errors below the Search form area (instead of above) Summary: Move the phui-info-view box about Query Errors below the phui-form-view Search form. That's below the `#R` anchor that the view automatically scrolls to. People do not scroll up again to expect an error message up there so show the error message down here. Closes T16089 Test Plan: Go to http://phorge.localhost/maniphest/query/advanced/ and enter something in the Query field that will trigger a Query Error, such as `help:now` or a very long string. Press the Search button. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Maniphest Tasks: T16089 Differential Revision: https://we.phorge.it/D26672 --- src/view/phui/PHUIObjectBoxView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/phui/PHUIObjectBoxView.php b/src/view/phui/PHUIObjectBoxView.php index 10c7890619..caed0ca30f 100644 --- a/src/view/phui/PHUIObjectBoxView.php +++ b/src/view/phui/PHUIObjectBoxView.php @@ -309,7 +309,6 @@ final class PHUIObjectBoxView extends AphrontTagView { ($this->showHideOpen == false ? $this->anchor : null), $header, $this->infoView, - $this->formErrors, $exception_errors, $this->form, $this->tabGroups, @@ -318,6 +317,7 @@ final class PHUIObjectBoxView extends AphrontTagView { $lists, $this->table, $pager, + $this->formErrors, $this->renderChildren(), ); -- 2.51.2