Skip to content

Commit

Permalink
fix(workflow-editor): fix step inspector not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
mayacoda committed Jul 21, 2017
1 parent db0f4be commit 3d22995
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 36 deletions.
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,20 @@
},
"private": true,
"dependencies": {
"@angular/common": "^4.3.0",
"@angular/compiler": "^4.3.0",
"@angular/core": "^4.3.0",
"@angular/forms": "^4.3.0",
"@angular/http": "^4.3.0",
"@angular/platform-browser": "^4.3.0",
"@angular/platform-browser-dynamic": "^4.3.0",
"@angular/router": "^4.3.0",
"@angular/common": "^4.3.1",
"@angular/compiler": "^4.3.1",
"@angular/core": "^4.3.1",
"@angular/forms": "^4.3.1",
"@angular/http": "^4.3.1",
"@angular/platform-browser": "^4.3.1",
"@angular/platform-browser-dynamic": "^4.3.1",
"@angular/router": "^4.3.1",
"ajv": "^5.1.6",
"angular2-moment": "^1.6.0",
"bootstrap": "4.0.0-alpha.5",
"brace": "^0.10.0",
"core-js": "^2.4.1",
"cwl-svg": "0.0.37",
"cwlts": "^1.13.30",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"js-yaml": "^3.9.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import {ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, ViewEncapsulation} from "@angular/core";
import {
ChangeDetectionStrategy,
ChangeDetectorRef,
Component,
Input
} from "@angular/core";
import {Workflow} from "cwl-svg";
import {StepModel, WorkflowModel} from "cwlts/models";
import {PlatformAPI} from "../../../services/api/platforms/platform-api.service";
Expand Down Expand Up @@ -79,7 +84,7 @@ export class StepInspectorComponent extends DirectiveBase {
graph: Workflow;

@Input()
fileID:string;
fileID: string;

tabs = {
Inputs: "inputs",
Expand Down Expand Up @@ -111,7 +116,7 @@ export class StepInspectorComponent extends DirectiveBase {
console.log("Should update app", ev, this);

const [appHash] = this.fileID.split("/");
const api = this.apiGateway.forHash(appHash);
const api = this.apiGateway.forHash(appHash);

api.getApp(appData).subscribe((app) => {

Expand Down

0 comments on commit 3d22995

Please sign in to comment.