Skip to content

Commit

Permalink
Merge branch 'release_21.09' into release_22.01
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Sep 20, 2024
2 parents a03856c + 0a03998 commit 101d4a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/plugins/visualizations/editor/templates/editor.mako
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
const ajax_url = "${h.url_for( controller='/datasets', action='index')}/" + hda_id + "/display";
const data = httpGet(ajax_url);
document.getElementById("editor").innerHTML = data;
var editor = ace.edit("editor", {
mode: "ace/mode/powershell",
theme: "ace/theme/textmate"
});
editor.setValue(data, -1);
</script>
</body>
</html>
9 changes: 5 additions & 4 deletions lib/galaxy/model/store/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,10 +340,11 @@ def handle_dataset_object_edit(dataset_instance):
self._attach_raw_id_if_editing(dataset_instance, dataset_attrs)

# Older style...
if 'uuid' in dataset_attrs:
dataset_instance.dataset.uuid = dataset_attrs["uuid"]
if 'dataset_uuid' in dataset_attrs:
dataset_instance.dataset.uuid = dataset_attrs["dataset_uuid"]
if self.import_options.allow_edit:
if 'uuid' in dataset_attrs:
dataset_instance.dataset.uuid = dataset_attrs["uuid"]
if 'dataset_uuid' in dataset_attrs:
dataset_instance.dataset.uuid = dataset_attrs["dataset_uuid"]

self._session_add(dataset_instance)

Expand Down

0 comments on commit 101d4a6

Please sign in to comment.