Skip to content

Commit

Permalink
Merge branch 'release_23.0' into release_23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Aug 31, 2023
2 parents f68da3c + 1e96970 commit 6bb9bc6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12707,7 +12707,7 @@ export interface operations {
header?: {
"run-as"?: string;
};
/** @description The ID of the History. */
/** @description History ID or any string. */
/** @description The ID of the item (`HDA`/`HDCA`) contained in the history. */
/**
* @description The type of the target history element.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ window.bundleEntries.jqplot_box = function (options) {
chart : options.chart,
dataset_id : dataset.id,
dataset_groups : dataset_groups,
targets : options.targets,
target : options.target,
makeConfig : function( groups, plot_config ){
var boundary = getDomains( groups, 'x' );
$.extend( true, plot_config, {
Expand Down
5 changes: 4 additions & 1 deletion lib/galaxy/schema/invocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ def get(self, key: Any, default: Any = None) -> Any:
if key == "workflow_step_id":
return self._obj.workflow_step.order_index
elif key == "dependent_workflow_step_id":
return self._obj.dependent_workflow_step.order_index
if self._obj.dependent_workflow_step_id:
return self._obj.dependent_workflow_step.order_index
else:
return default

return super().get(key, default)

Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/api/history_contents.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def delete_typed(
self,
response: Response,
trans: ProvidesHistoryContext = DependsOnTrans,
history_id: DecodedDatabaseIdField = HistoryIDPathParam,
history_id: str = Path(..., description="History ID or any string."),
id: DecodedDatabaseIdField = HistoryItemIDPathParam,
type: HistoryContentType = ContentTypePathParam,
serialization_params: SerializationParams = Depends(query_serialization_params),
Expand Down

0 comments on commit 6bb9bc6

Please sign in to comment.