Skip to content

Commit 0fa61a8

Browse files
committed
Resolved missing trailing coma issues
1 parent a937119 commit 0fa61a8

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());
@@ -323,7 +323,7 @@ export function FlightLogAnalyser(flightLog, canvas, analyserCanvas) {
323323
);
324324
$("#analyserMinPSDLabel").toggleClass(
325325
"onlyFullScreenException",
326-
!psdHeatMapSelected
326+
!psdHeatMapSelected,
327327
);
328328
$("#analyserLowLevelPSDLabel").toggleClass(
329329
"onlyFullScreenException",

0 commit comments

Comments
 (0)