Added provider to detail vist table

This commit is contained in:
Nicolai Ort 2021-08-21 20:08:07 +02:00
parent 384354fbac
commit b0347a9d06
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
1 changed files with 5 additions and 0 deletions

View File

@ -50,6 +50,9 @@
<th scope="col" class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider">
Timestamp
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider">
Provider
</th>
</tr>
</thead>
<tbody class="bg-white dark:bg-gray-700 divide-y divide-gray-200 dark:text-gray-100" x-max="1">
@ -60,6 +63,7 @@
>
Loading data...
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm"> Loading data... </td>
</tr>
{:then}
{#each urlVisists as visit}
@ -69,6 +73,7 @@
>
{visit.timestamp}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm"> {visit.provider} </td>
</tr>
{/each}
{/await}