mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-10 17:10:06 -04:00
Fixes bug with undefined value in the loop
Details: https://github.com/sveltejs/svelte/issues/14203
This commit is contained in:
parent
c9ec8e21ee
commit
627ea95ec9
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div>
|
||||
{#each channelsDisplay as channel}
|
||||
{#each channelsDisplay as channel, idx (channel)}
|
||||
<ChannelItem bind:channel />
|
||||
{/each}
|
||||
</div>
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
loading...
|
||||
</div>
|
||||
{/if}
|
||||
{#each _countries as country (country.code)}
|
||||
{#each _countries as country, idx (country)}
|
||||
{#if groupedByCountry[country.code] && groupedByCountry[country.code].length > 0}
|
||||
<CountryItem
|
||||
bind:country
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue