From ff3d123e4716d09f0a4a2cefb0c85a8a7175c9a6 Mon Sep 17 00:00:00 2001 From: Peter Mathis Date: Fri, 28 Jun 2024 11:17:42 +0200 Subject: [PATCH 1/2] wider "content_status_history" modal --- plone/app/contentmenu/menu.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plone/app/contentmenu/menu.py b/plone/app/contentmenu/menu.py index e752899..e8c1e5f 100644 --- a/plone/app/contentmenu/menu.py +++ b/plone/app/contentmenu/menu.py @@ -893,6 +893,11 @@ def getMenuItems(self, context, request): "id": "workflow-transition-advanced", "separator": "actionSeparator", "class": "pat-plone-modal", + "modal": json.dumps( + { + "modalSizeClass": "modal-xl", + } + ), }, "submenu": None, } From a0e534f270ceb4b951def35bb124e22dd445895e Mon Sep 17 00:00:00 2001 From: Peter Mathis Date: Fri, 28 Jun 2024 11:19:50 +0200 Subject: [PATCH 2/2] changenote --- news/67.bugfix | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 news/67.bugfix diff --git a/news/67.bugfix b/news/67.bugfix new file mode 100644 index 0000000..8ca3fb8 --- /dev/null +++ b/news/67.bugfix @@ -0,0 +1,2 @@ +Wider ``content_status_history`` modal. +[petschki]