diff options
author | ana <ana@ana.st> | 2021-08-09 11:37:13 +0200 |
---|---|---|
committer | ana <ana@ana.st> | 2021-08-09 11:37:13 +0200 |
commit | dda5be124293211d268bec9e923cac40096b6a6f (patch) | |
tree | ae7122d480e3b95933aff6b395603ab7a893112f /src | |
parent | 232b29e3d294d44c0d9867a1586199c3e00b5509 (diff) | |
download | eureka-marks-dda5be124293211d268bec9e923cac40096b6a6f.tar.gz |
fix: correct pagos max level in forecast
Diffstat (limited to 'src')
-rw-r--r-- | src/App.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.svelte b/src/App.svelte index 561ab36..b16929b 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -186,7 +186,7 @@ {#if $level >= 35 && $level < 50}<strong>Pyros</strong >{:else}Pyros{/if}: {pyrosForecast[0].weatherName} </li> - {#if $level >= 35 && $level < 500}<ul> + {#if $level >= 35 && $level < 50}<ul> {#each [1, 2, 3, 4] as i}<li> {ew.getWeatherName(getZoneForecast()[i].currWeather)} </li>{/each} |