This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new a34a8799ba Improved: show MainActionMenu in Party - LoggedInUser screen (OFBIZ-12895) (#691) a34a8799ba is described below commit a34a8799ba70a20e2b3388bf5f4a1d9ca0021263 Author: Pierre Smits <pierre.sm...@somonar.com> AuthorDate: Wed Feb 14 10:33:11 2024 +0100 Improved: show MainActionMenu in Party - LoggedInUser screen (OFBIZ-12895) (#691) Currently the ListLoggedInUsers screen in VisitScreens.xml does not show the MainActionMenu of the party component. For a consistent user experience this should be. Modified: VisitScreens.xml - added decorator-section 'pre-body' having MainActionMenu to screen ListLoggedInUser --- applications/party/widget/partymgr/VisitScreens.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/applications/party/widget/partymgr/VisitScreens.xml b/applications/party/widget/partymgr/VisitScreens.xml index 02a9de3fae..b946d992b2 100644 --- a/applications/party/widget/partymgr/VisitScreens.xml +++ b/applications/party/widget/partymgr/VisitScreens.xml @@ -67,6 +67,9 @@ under the License. </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> + <decorator-section name="pre-body"> + <include-menu name="MainActionMenu" location="component://party/widget/partymgr/PartyMenus.xml"/> + </decorator-section> <decorator-section name="body"> <include-screen name="LoggedInUsersScreen" /> </decorator-section>