File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/qwc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
105
105
this . _state = JSON . parse ( jsonRpcResponse . result ) ;
106
106
} ) ;
107
107
this . _streamResultsObserver = this . jsonRpc . streamTestResults ( ) . onNext ( jsonRpcResponse => {
108
- this . _results = JSON . parse ( jsonRpcResponse . result ) ;
108
+ this . _results = jsonRpcResponse . result ;
109
109
} ) ;
110
110
}
111
111
@@ -121,7 +121,7 @@ export class QwcContinuousTesting extends QwcHotReloadElement {
121
121
} ) ;
122
122
this . jsonRpc . lastKnownResults ( ) . then ( jsonRpcResponse => {
123
123
if ( jsonRpcResponse . result ) {
124
- this . _results = JSON . parse ( jsonRpcResponse . result ) ;
124
+ this . _results = jsonRpcResponse . result ;
125
125
}
126
126
} ) ;
127
127
}
You can’t perform that action at this time.
0 commit comments