diff --git a/lib/galaxy/webapps/galaxy/controllers/page.py b/lib/galaxy/webapps/galaxy/controllers/page.py index 0d4d11b993e6..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": [ @@ -94,7 +92,7 @@ def create(self, trans, payload=None, **kwd): "label": "Content", "area": True, "value": content, - "hidden": content_hide, + "hidden": True, }, ], }