Skip to content

Commit

Permalink
15 minute data correction
Browse files Browse the repository at this point in the history
  • Loading branch information
mollybsmith-noaa committed Jun 21, 2024
1 parent e633d14 commit 5d2bcda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ceil-vis15/server/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ const doCurveParams = function () {
.split(",")
.map(Function.prototype.call, String.prototype.trim)
.map(function (fhr) {
return Number(fhr.replace(/'|\[|\]/g, "")) / 60;
return (Number(fhr.replace(/'|\[|\]/g, "")) / 60).toString();
});

const thresholds = rows[i].trsh;
Expand Down

0 comments on commit 5d2bcda

Please sign in to comment.