Skip to content

Commit

Permalink
Update develop artifacts (#1960)
Browse files Browse the repository at this point in the history
* Update develop artifacts

* Fix build errors
  • Loading branch information
kathy-t authored Apr 9, 2024
1 parent 72336f8 commit d613533
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"config": {
"webservice_version": "1.15.0-rc.2",
"use_circle": true,
"circle_ci_source": "https://app.circleci.com/pipelines/github/dockstore/dockstore/10974/workflows/5e5f2c59-e91b-4de1-adb3-7a66f3d2d742/jobs/41479/artifacts",
"circle_build_id": "41479"
"circle_ci_source": "https://app.circleci.com/pipelines/github/dockstore/dockstore/11118/workflows/fd1cfead-4230-49d5-8109-8ea9b46b918f/jobs/42553/artifacts",
"circle_build_id": "42553"
},
"scripts": {
"ng": "npx ng",
Expand Down
2 changes: 1 addition & 1 deletion src/app/container/paramfiles/paramfiles.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class ParamfilesService {
return this.workflowsService.getTestParameterFiles1(id, versionName);
} else {
if (descriptor === 'CWL' || descriptor === 'WDL') {
return this.containersService.getTestParameterFiles(id, versionName, descriptor);
return this.containersService.getTestParameterFiles(id, descriptor, versionName);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,11 @@ export class LaunchThirdPartyComponent extends Base implements OnChanges, OnInit
this.descriptorLanguageService.workflowDescriptorTypeEnumToExtendedDescriptorLanguageBean(
descriptorType
).descriptorLanguageEnum;
this.workflowsService.primaryDescriptor1(this.workflow.id, this.selectedVersion.name, descriptorType).subscribe((sourceFile) => {
this.workflowsService.primaryDescriptor1(this.workflow.id, descriptorType, this.selectedVersion.name).subscribe((sourceFile) => {
this.descriptorsService.updatePrimaryDescriptor(sourceFile);
if (fileDescriptors.some((file) => file.file_type === FileTypeEnum.SECONDARYDESCRIPTOR)) {
this.workflowsService
.secondaryDescriptors1(this.workflow.id, this.selectedVersion.name, descriptorLanguageEnum)
.secondaryDescriptors1(this.workflow.id, descriptorLanguageEnum, this.selectedVersion.name)
.subscribe((sourceFiles: Array<SourceFile>) => {
this.descriptorsService.updateSecondaryDescriptors(sourceFiles);
});
Expand Down

0 comments on commit d613533

Please sign in to comment.