Skip to content

Commit 396e712

Browse files
committed
Resolved Missing trailing comma issue
1 parent dc0290e commit 396e712

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
@@ -302,27 +302,27 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
302302
overdrawSpectrumTypeElem.toggle(!pidErrorVsSetpointSelected);
303303
analyserZoomYElem.toggleClass(
304304
"onlyFullScreenException",
305-
pidErrorVsSetpointSelected || psdHeatMapSelected
305+
pidErrorVsSetpointSelected || psdHeatMapSelected,
306306
);
307307
analyserShiftPSDSlider.toggleClass(
308308
"onlyFullScreenException",
309-
!psdHeatMapSelected
309+
!psdHeatMapSelected,
310310
);
311311
analyserLowLevelPSDSlider.toggleClass(
312312
"onlyFullScreenException",
313-
!psdHeatMapSelected
313+
!psdHeatMapSelected,
314314
);
315315
analyserMinPSDText.toggleClass(
316316
"onlyFullScreenException",
317-
!psdHeatMapSelected
317+
!psdHeatMapSelected,
318318
);
319319
analyserMaxPSDText.toggleClass(
320320
"onlyFullScreenException",
321-
!psdHeatMapSelected
321+
!psdHeatMapSelected,
322322
);
323323
analyserLowPSDText.toggleClass(
324324
"onlyFullScreenException",
325-
!psdHeatMapSelected
325+
!psdHeatMapSelected,
326326
);
327327

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

0 commit comments

Comments
 (0)