Files
Jungfraujoch/frontend/src
leonarski_fandClaude Opus 4.8 1aac0495e1 frontend: guard the TIFF value colour span against zero/negative
`span = hi - lo || 1` only replaced an exactly-zero span, so Min>Max (or a
cleared Min/Max field coercing to 0 via Number("")) gave a negative span
and rendered the pedestal image with an inverted/collapsed colour scale.
Use `hi - lo > 0 ? hi - lo : 1` so a non-positive span falls back to 1.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-12 16:59:57 +02:00
..
2026-07-11 07:19:11 +02:00
2024-10-05 13:14:49 +02:00
2026-07-11 07:19:11 +02:00
2024-10-05 13:14:49 +02:00
2026-06-23 20:29:49 +02:00
2026-07-11 11:34:11 +02:00