Skip to content

Commit

Permalink
Merge pull request quarkusio#36176 from phillip-kruger/dev-fix-test-s…
Browse files Browse the repository at this point in the history
…creen

Dev-UI: Fix Test screen
  • Loading branch information
phillip-kruger authored Sep 27, 2023
2 parents 49c5fdb + 1a1438e commit c8a911c
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 c8a911c

Please sign in to comment.