@idefix37 The glitch disappeared couple of hours later for me as well.
As a software developer, I bet there's nothing to do with the browser, because it's not CSS glitch, and you don't do modelling on the client side. For my years of frontend development, never Firefox has displayed same data differently than, say, Chrome.
When the glitch happened, the temperature looked like from much earlier hours (+38 was at 13:00 local time, and +26 was a perfect temperature for night time).
Your data is stored in JSON tiles, and I bet they're generated on the backend and stored statically, to reduce server load. Here's Tashkent's tiles:
Zoom 6: https://tiles.windy.com/labels/v1.4/en/6/44/23.json
Zoom 5: https://tiles.windy.com/labels/v1.4/en/5/22/11.json
I suppose the files in /5/
get cached for longer than in /6/
(or /5/
is updated rarer than /6/
). A simple Python script that would get these 2 files every hour and compare the values would show when this happens.
(edit: looks like it's not direct values of temperatures but indice of an array which is loaded elsewhere.)