Update ChannelGrid.svelte

This commit is contained in:
Arhey 2022-09-13 22:05:32 +03:00
parent 5a1aa1cd51
commit 4f2faf3e8d

View file

@ -16,23 +16,23 @@
<th scope="col" class="min-w-[10rem] md:w-[13rem] relative"></th>
<th
scope="col"
class="py-3 px-2 text-xs font-semibold tracking-wider text-left text-gray-400 uppercase dark:text-gray-400 min-w-[14rem] md:w-[18rem]"
class="py-3 px-3 text-xs font-semibold tracking-wider text-left text-gray-400 uppercase dark:text-gray-400 min-w-[14rem] md:w-[19rem]"
>
Name
</th>
<th
scope="col"
class="py-3 px-2 text-xs font-semibold tracking-wider text-left text-gray-400 uppercase dark:text-gray-400 min-w-[12rem] md:w-[18rem]"
class="py-3 px-2 text-xs font-semibold tracking-wider text-left text-gray-400 uppercase dark:text-gray-400 min-w-[12rem] md:w-[16rem]"
>
TVG-ID
</th>
<th scope="col" class="relative min-w-[13rem]">
<th scope="col" class="relative min-w-[11rem]">
<span class="sr-only">Actions</span>
</th>
</tr>
</thead>
<tbody class="bg-white dark:bg-gray-800">
{#each channels as channel}
{#each channels as channel (channel.id)}
<ChannelItem bind:channel="{channel}" />
{/each}
</tbody>