Skip to content

Commit 64597fe

Browse files
committed
Resolved missing trailing coma issues
1 parent 0518fae commit 64597fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/graph_spectrum.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
267267
const lowLevel = analyserLowLevelPSD.val();
268268
GraphSpectrumPlot.setLowLevelPSD(lowLevel);
269269
that.refresh();
270-
})
270+
}),
271271
).dblclick(function () {
272272
$(this).val(analyserMinPSD.val()).trigger("input");
273273
}).val(analyserMinPSD.val());
@@ -330,7 +330,7 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
330330
);
331331
$("#analyserMinPSDLabel").toggleClass(
332332
"onlyFullScreenException",
333-
!psdHeatMapSelected
333+
!psdHeatMapSelected,
334334
);
335335
$("#analyserLowLevelPSDLabel").toggleClass(
336336
"onlyFullScreenException",

0 commit comments

Comments
 (0)