Exclude BLANK-000000
Test and deploy / deploy (push) Successful in 31s

This commit is contained in:
2026-07-29 10:44:09 -05:00
parent 60d0621750
commit ead6108f2a
5 changed files with 6 additions and 5 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -120,7 +120,7 @@ function drawPlot() {
const minimum = Math.min(...values);
const maximum = Math.max(...values);
const range = Math.max(1, maximum - minimum);
const yMin = Math.max(0, minimum - range * 0.04);
const yMin = minimum - range * 0.04;
const yMax = maximum + range * 0.04;
const xFor = position => margin.left + (
releaseIndexes.length === 1 ? plotWidth / 2 : position * plotWidth / (releaseIndexes.length - 1)