Skip to content

Commit 6e75239

Browse files
authored
Resolved Missing trailing comma issue
1 parent 995533e commit 6e75239

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/graph_spectrum.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -297,27 +297,27 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
297297
overdrawSpectrumTypeElem.toggle(!pidErrorVsSetpointSelected);
298298
analyserZoomYElem.toggleClass(
299299
"onlyFullScreenException",
300-
pidErrorVsSetpointSelected || psdHeatMapSelected
300+
pidErrorVsSetpointSelected || psdHeatMapSelected,
301301
);
302302
analyserShiftPSDSlider.toggleClass(
303303
"onlyFullScreenException",
304-
!psdHeatMapSelected
304+
!psdHeatMapSelected,
305305
);
306306
analyserLowLevelPSDSlider.toggleClass(
307307
"onlyFullScreenException",
308-
!psdHeatMapSelected
308+
!psdHeatMapSelected,
309309
);
310310
analyserMinPSDText.toggleClass(
311311
"onlyFullScreenException",
312-
!psdHeatMapSelected
312+
!psdHeatMapSelected,
313313
);
314314
analyserMaxPSDText.toggleClass(
315315
"onlyFullScreenException",
316-
!psdHeatMapSelected
316+
!psdHeatMapSelected,
317317
);
318318
analyserLowPSDText.toggleClass(
319319
"onlyFullScreenException",
320-
!psdHeatMapSelected
320+
!psdHeatMapSelected,
321321
);
322322

323323
$("#spectrumComparison").css("visibility", (optionSelected == 0 ? "visible" : "hidden"));

0 commit comments

Comments
 (0)