Skip to content

Commit 126a16f

Browse files
logging
1 parent 2e7a435 commit 126a16f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/resources/public/assets/js/pulse

src/main/resources/public/assets/js/pulse/pulse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ console.log(riskColorClasses);
150150
console.log('loop');
151151
console.log(risk < r.threshold[0]);
152152
console.log(risk >= r.threshold[1]);
153-
if (risk < r.threshold[0] && risk >= r.threshold[1]) {
153+
if (r.threshold[0] <= risk && risk <= r.threshold[1]) {
154154
colorclass = r.classname;
155155
}
156156
});

0 commit comments

Comments
 (0)