From d54fcdda7176665ba8b5095627e3f80053563732 Mon Sep 17 00:00:00 2001 From: Assunta DeSanto Date: Thu, 11 Apr 2024 10:16:37 -0400 Subject: [PATCH 1/2] making content hidden on workflow invocation report edit page --- lib/galaxy/webapps/galaxy/controllers/page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/webapps/galaxy/controllers/page.py b/lib/galaxy/webapps/galaxy/controllers/page.py index 0d4d11b993e6..13b3d4dc4e58 100644 --- a/lib/galaxy/webapps/galaxy/controllers/page.py +++ b/lib/galaxy/webapps/galaxy/controllers/page.py @@ -94,7 +94,7 @@ def create(self, trans, payload=None, **kwd): "label": "Content", "area": True, "value": content, - "hidden": content_hide, + "hidden": True, }, ], } From f5217dbd73bdc15ee2ebdb0be1c88134d030bc49 Mon Sep 17 00:00:00 2001 From: Assunta DeSanto Date: Thu, 11 Apr 2024 13:19:56 -0400 Subject: [PATCH 2/2] removing content_hide from invocation page controller --- lib/galaxy/webapps/galaxy/controllers/page.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/galaxy/webapps/galaxy/controllers/page.py b/lib/galaxy/webapps/galaxy/controllers/page.py index 13b3d4dc4e58..b0778fb84632 100644 --- a/lib/galaxy/webapps/galaxy/controllers/page.py +++ b/lib/galaxy/webapps/galaxy/controllers/page.py @@ -53,7 +53,6 @@ def create(self, trans, payload=None, **kwd): title = "" slug = "" content = "" - content_hide = True if "invocation_id" in kwd: invocation_id = kwd.get("invocation_id") form_title = f"{form_title} from Invocation Report" @@ -63,7 +62,6 @@ def create(self, trans, payload=None, **kwd): ) title = invocation_report.get("title") content = invocation_report.get("markdown") - content_hide = False return { "title": form_title, "inputs": [