Skip to content

Commit 25627f8

Browse files
committed
Resolved missing trailing coma issues
1 parent 7f0f0e3 commit 25627f8

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
@@ -266,7 +266,7 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
266266
const lowLevel = analyserLowLevelPSD.val();
267267
GraphSpectrumPlot.setLowLevelPSD(lowLevel);
268268
that.refresh();
269-
})
269+
}),
270270
).dblclick(function () {
271271
$(this).val(analyserMinPSD.val()).trigger("input");
272272
}).val(analyserMinPSD.val());
@@ -322,7 +322,7 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
322322
);
323323
$("#analyserMinPSDLabel").toggleClass(
324324
"onlyFullScreenException",
325-
!psdHeatMapSelected
325+
!psdHeatMapSelected,
326326
);
327327
$("#analyserLowLevelPSDLabel").toggleClass(
328328
"onlyFullScreenException",

0 commit comments

Comments
 (0)