File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 378378 /**
379379 * Enable/disable summary widgets. Added in R3.4.0.
380380 */
381- summaryWidgets : {
382- enabled : true
381+ SummaryWidget : {
382+ enabled : false
383383 } ,
384384 BarChart : {
385385 enabled : false
386386 } ,
387+ CorrelationTelemetry : {
388+ enabled : false
389+ } ,
387390 ScatterPlot : {
388391 enabled : false
389392 } ,
Original file line number Diff line number Diff line change 8888 },
8989 "author" : " " ,
9090 "license" : " Apache-2.0"
91- }
91+ }
Original file line number Diff line number Diff line change @@ -66,8 +66,13 @@ class MCWSClient {
6666 try {
6767 response = await fetch ( url , options ) ;
6868 } catch ( error ) {
69- console . error ( 'Error in base request' , error ) ;
70- throw error ;
69+ if ( error . name === 'AbortError' ) {
70+ console . warn ( 'Request aborted' , error ) ;
71+ return ;
72+ } else {
73+ console . error ( 'Error in base request' , error ) ;
74+ throw error ;
75+ }
7176 } finally {
7277 this . _updatePending ( ) ;
7378 }
You can’t perform that action at this time.
0 commit comments