We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5961a4b commit cae60b1Copy full SHA for cae60b1
website/dashboard/index.js
@@ -356,8 +356,10 @@ document.addEventListener('DOMContentLoaded', function() {
356
let estimatedRangeLower = Math.abs(minValue) / Math.min(...groundTruthList)
357
if (minValue < 0) {
358
rangeValueLowerRegion.textContent = minValue.toFixed(4)
359
+ document.getElementById('region-lower-slider').style.visibility = 'visible';
360
}
361
else {
362
+ document.getElementById('region-lower-slider').style.visibility = 'hidden';
363
rangeValueLowerRegion.textContent = '0.0000'
364
selectedRangeLowerRegion = 0;
365
0 commit comments