diff options
| author | bob <bcz@cs.brown.edu> | 2019-03-29 13:18:35 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-03-29 13:18:35 -0400 |
| commit | 1bd678851632bbbb302363574eb5e3e19dc343e9 (patch) | |
| tree | 8526a6c84303f1dc5a5e284ec03c97cf3b3a6bac /src/client/northstar/operations/BaseOperation.ts | |
| parent | c3eea60fa586e8ff9cf59497c041044fd0143bb1 (diff) | |
reorganized and mostly working northstar histograms.
Diffstat (limited to 'src/client/northstar/operations/BaseOperation.ts')
| -rw-r--r-- | src/client/northstar/operations/BaseOperation.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/northstar/operations/BaseOperation.ts b/src/client/northstar/operations/BaseOperation.ts index 7db6fcb91..94e0849af 100644 --- a/src/client/northstar/operations/BaseOperation.ts +++ b/src/client/northstar/operations/BaseOperation.ts @@ -10,9 +10,9 @@ export abstract class BaseOperation { @observable public Error: string = ""; @observable public OverridingFilters: FilterModel[] = []; - @observable public Result: Result | undefined; + @observable public Result?: Result = undefined; @observable public ComputationStarted: boolean = false; - public OperationReference: OperationReference | undefined = undefined; + public OperationReference?: OperationReference = undefined; private static _nextId = 0; public RequestSalt: string = ""; |
