# HG changeset patch # User Sascha Wilde # Date 1558975520 -7200 # Node ID 1457e2b9d900519961550505b6f30194f56651f7 # Parent f10d606b2931ed39af7d37d301248197de4dea26 Set threshold for green gauge data availability to 85%. The SRS reads like 100%, but that seems unrealistic and the threshold shall be configurable anyway. In the meantime 85% makes things look nicer... diff -r f10d606b2931 -r 1457e2b9d900 client/src/lib/classifications.js --- a/client/src/lib/classifications.js Mon May 27 18:34:18 2019 +0200 +++ b/client/src/lib/classifications.js Mon May 27 18:45:20 2019 +0200 @@ -45,7 +45,8 @@ if ( gmN !== undefined && gmN !== null && - gmN >= 1344 // one value every 15 min in 14 days + gmN >= 1124 // 1344: one value every 15 min in 14 days, but the Hydra says: + // let 85% be enough for now. ) { return "lime"; }