Skip to content

Commit

Permalink
Dev-UI: Fix Test screen
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Kruger <[email protected]>
  • Loading branch information
phillip-kruger committed Sep 27, 2023
1 parent 49c5fdb commit 1a1438e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
this._state = JSON.parse(jsonRpcResponse.result);
});
this._streamResultsObserver = this.jsonRpc.streamTestResults().onNext(jsonRpcResponse => {
this._results = JSON.parse(jsonRpcResponse.result);
this._results = jsonRpcResponse.result;
});
}

Expand All @@ -121,7 +121,7 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
});
this.jsonRpc.lastKnownResults().then(jsonRpcResponse => {
if(jsonRpcResponse.result){
this._results = JSON.parse(jsonRpcResponse.result);
this._results = jsonRpcResponse.result;
}
});
}
Expand Down

0 comments on commit 1a1438e

Please sign in to comment.