Skip to content

Commit 02e06e0

Browse files
committed
Resolved Missing trailing comma issue
1 parent 1ddbbbc commit 02e06e0

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
@@ -294,27 +294,27 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
294294
overdrawSpectrumTypeElem.toggle(!pidErrorVsSetpointSelected);
295295
analyserZoomYElem.toggleClass(
296296
"onlyFullScreenException",
297-
pidErrorVsSetpointSelected || psdHeatMapSelected
297+
pidErrorVsSetpointSelected || psdHeatMapSelected,
298298
);
299299
analyserShiftPSDSlider.toggleClass(
300300
"onlyFullScreenException",
301-
!psdHeatMapSelected
301+
!psdHeatMapSelected,
302302
);
303303
analyserLowLevelPSDSlider.toggleClass(
304304
"onlyFullScreenException",
305-
!psdHeatMapSelected
305+
!psdHeatMapSelected,
306306
);
307307
analyserMinPSDText.toggleClass(
308308
"onlyFullScreenException",
309-
!psdHeatMapSelected
309+
!psdHeatMapSelected,
310310
);
311311
analyserMaxPSDText.toggleClass(
312312
"onlyFullScreenException",
313-
!psdHeatMapSelected
313+
!psdHeatMapSelected,
314314
);
315315
analyserLowPSDText.toggleClass(
316316
"onlyFullScreenException",
317-
!psdHeatMapSelected
317+
!psdHeatMapSelected,
318318
);
319319

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

0 commit comments

Comments
 (0)