File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ export function timeSeriesDisplayToChartConfig(
33
33
}
34
34
}
35
35
36
- const subplotId = subplot . items . map ( plot => plot . request ) . toString ( )
36
+ const subplotId = subplot . items . map ( ( plot ) => plot . request ) . toString ( )
37
37
const config : ChartConfig = {
38
38
id : subplotId ,
39
- title : "" ,
39
+ title : '' ,
40
40
xAxis,
41
41
yAxis : yAxisFromSubplot ( subplot ) ,
42
42
series : [ ] ,
Original file line number Diff line number Diff line change @@ -143,7 +143,10 @@ export function useTimeSeries(
143
143
? `${ request . key } [${ index } ]`
144
144
: ( request . key ?? '' )
145
145
updatedSeriesIds . push ( resourceId )
146
- const resource = new SeriesUrlRequest ( 'fews-pi' , `dummyUrl-for-resource-${ resourceId } ` )
146
+ const resource = new SeriesUrlRequest (
147
+ 'fews-pi' ,
148
+ `dummyUrl-for-resource-${ resourceId } ` ,
149
+ )
147
150
const _series = new Series ( resource )
148
151
const header = timeSeries . header
149
152
if ( header !== undefined ) {
You can’t perform that action at this time.
0 commit comments