Skip to content

Commit

Permalink
Merge branch 'release/v1.0.1-rc.1' of https://github.com/rabix/composer
Browse files Browse the repository at this point in the history
… into release/v1.0.1-rc.1-latest
  • Loading branch information
marijanlekic committed Sep 27, 2018
2 parents c91b408 + 89038fd commit 3d5bed5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/cwl/app-generator/app-generator.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class AppGeneratorService {
static generate(version: "d2sb" | "v1.0", type: "CommandLineTool" | "Workflow", id: string, label: string): Object {
const app: any = {
$namespaces: {
sbg: "https://www.sevenbridges.com"
sbg: "https://www.sevenbridges.com/"
},
id,
label,
Expand Down
2 changes: 1 addition & 1 deletion src/app/tool-editor/tool-editor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export class ToolEditorComponent extends AppEditorBase implements OnInit {

this.dataModel = CommandLineToolFactory.from(json as any, "document");
if (!this.dataModel.namespaces.has("sbg")) {
this.dataModel.namespaces.set("sbg", "https://www.sevenbridges.com");
this.dataModel.namespaces.set("sbg", "https://www.sevenbridges.com/");
}

this.dataModel.onCommandLineResult(cmdResult => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/workflow-editor/workflow-editor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class WorkflowEditorComponent extends AppEditorBase implements OnDestroy,
this.dataModel = WorkflowFactory.from(json as any, "document");

if (!this.dataModel.namespaces.has("sbg")) {
this.dataModel.namespaces.set("sbg", "https://www.sevenbridges.com");
this.dataModel.namespaces.set("sbg", "https://www.sevenbridges.com/");
}

this.dataModel.setValidationCallback(this.afterModelValidation.bind(this));
Expand Down

0 comments on commit 3d5bed5

Please sign in to comment.