We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fb2cb5 commit 48193b7Copy full SHA for 48193b7
lib/galaxy/webapps/galaxy/controllers/dataset.py
@@ -627,7 +627,13 @@ def display_application(
627
else:
628
msg.append((f"Invalid action provided: {app_action}", "error"))
629
630
- raise Exception(f"Attempted a view action ({app_action}) on a non-ready display application")
+ 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")
637
return dict(msg=msg)
638
return trans.show_error_message(
639
"You do not have permission to view this dataset at an external display application."
0 commit comments