This commit is contained in:
Oleg Zharkov
2021-02-08 16:09:37 +01:00
parent c2082029d1
commit 5c6d99b291
2 changed files with 2 additions and 3 deletions
@@ -46,7 +46,7 @@ export default {
pathDestination.filepath
);
} else if (this.path === undefined || this.path === "undefined") {
this.directoryContent = pathDestination.datasetContent
this.directoryContent = pathDestination.datasetContent;
} else {
this.errorMessage = `is not found!`;
}
+1 -2
View File
@@ -388,8 +388,7 @@ class ToBasicMarkdownDirectiveHandler(GalaxyInternalMarkdownDirectiveHandler):
def handle_dataset_as_image(self, line, hda):
dataset = hda.dataset
name = hda.name or ''
filepath = re.search(PATH_LABEL_PATTERN, line).group(2)
filepath = re.search(PATH_LABEL_PATTERN, line).group(2)
if filepath is not None:
file = os.path.join(hda.extra_files_path, filepath)