Skip to content

Commit c8a911c

Browse files
Merge pull request quarkusio#36176 from phillip-kruger/dev-fix-test-screen
Dev-UI: Fix Test screen
2 parents 49c5fdb + 1a1438e commit c8a911c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qwc/qwc-continuous-testing.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
105105
this._state = JSON.parse(jsonRpcResponse.result);
106106
});
107107
this._streamResultsObserver = this.jsonRpc.streamTestResults().onNext(jsonRpcResponse => {
108-
this._results = JSON.parse(jsonRpcResponse.result);
108+
this._results = jsonRpcResponse.result;
109109
});
110110
}
111111

@@ -121,7 +121,7 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
121121
});
122122
this.jsonRpc.lastKnownResults().then(jsonRpcResponse => {
123123
if(jsonRpcResponse.result){
124-
this._results = JSON.parse(jsonRpcResponse.result);
124+
this._results = jsonRpcResponse.result;
125125
}
126126
});
127127
}

0 commit comments

Comments
 (0)