From 8800fc6c9731f01bf72462c6c0bfee44100ebe48 Mon Sep 17 00:00:00 2001 From: Kwimbee <72341571+Kwimbee@users.noreply.github.com> Date: Tue, 12 Dec 2023 17:32:51 +0100 Subject: [PATCH] fix max wet bar init value --- iforte/base.js | 1 + 1 file changed, 1 insertion(+) diff --git a/iforte/base.js b/iforte/base.js index 283fd10..160fb7d 100644 --- a/iforte/base.js +++ b/iforte/base.js @@ -95,6 +95,7 @@ function loopRainsSimulator() { } $("#iforte_rains_bar_current").width(rains_value + "%"); + $("#iforte_rains_bar_max").width(rains_lowest + "%"); if (rains_value < rains_lowest) { sessionStorage.setItem("iforte_demo_rains_lowest", rains_value);