Fix tendency format

master
Marco Heiming 2022-06-23 16:16:59 +02:00
parent 634b0bb29a
commit 99ec754622
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ function draw() {
if (threeHourAvrPressure != undefined) {
if (medianPressure != undefined) {
const diff = Math.round(medianPressure - threeHourAvrPressure);
g.drawString((diff > 0 ? "+" : "" + diff), x + 24, y + 6 + 10);
g.drawString((diff > 0 ? "+" : "") + diff, x + 24, y + 6 + 10);
}
}
}