Skip to content

Commit 48193b7

Browse files
committed
Add message
1 parent 7fb2cb5 commit 48193b7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/galaxy/webapps/galaxy/controllers/dataset.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,13 @@ def display_application(
627627
else:
628628
msg.append((f"Invalid action provided: {app_action}", "error"))
629629
else:
630-
raise Exception(f"Attempted a view action ({app_action}) on a non-ready display application")
630+
if app_action is None:
631+
msg.append((
632+
"Launching this display application requires additional datasets to be generated.",
633+
"info",
634+
))
635+
else:
636+
raise Exception(f"Attempted a view action ({app_action}) on a non-ready display application")
631637
return dict(msg=msg)
632638
return trans.show_error_message(
633639
"You do not have permission to view this dataset at an external display application."

0 commit comments

Comments
 (0)