mirror of
https://github.com/immich-app/immich.git
synced 2026-03-27 12:20:52 +03:00
chore: remove old table comment
This commit is contained in:
@@ -63,48 +63,6 @@
|
||||
</ServerStatisticsCard>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
<!-- <SettingAccordionState queryParam={QueryParameter.IS_OPEN}>
|
||||
<SettingAccordion
|
||||
title="Integrity Report"
|
||||
subtitle={`There are ${data.integrityReport.items.length} unresolved issues!`}
|
||||
icon={mdiRefresh}
|
||||
key="integrity-report"
|
||||
>
|
||||
<table class="mt-5 w-full text-start">
|
||||
<thead
|
||||
class="mb-4 flex h-12 w-full rounded-md border bg-gray-50 text-primary dark:border-immich-dark-gray dark:bg-immich-dark-gray"
|
||||
>
|
||||
<tr class="flex w-full place-items-center">
|
||||
<th class="w-2/8 text-center text-sm font-medium">Reason</th>
|
||||
<th class="w-6/8 text-center text-sm font-medium">File</th>
|
||||
<th class="w-1/8"></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody
|
||||
class="block max-h-80 w-full overflow-y-auto rounded-md border dark:border-immich-dark-gray dark:text-immich-dark-fg"
|
||||
>
|
||||
{#each data.integrityReport.items as { id, type, path } (id)}
|
||||
<tr class="flex py-1 w-full place-items-center even:bg-subtle/20 odd:bg-subtle/80">
|
||||
<td class="w-2/8 text-ellipsis text-center px-2 text-sm">
|
||||
{#if type === 'orphan_file'}
|
||||
Orphaned File
|
||||
{:else if type === 'missing_file'}
|
||||
Missing File
|
||||
{:else if type === 'checksum_mismatch'}
|
||||
Checksum Mismatch
|
||||
{/if}
|
||||
</td>
|
||||
<td class="w-6/8 text-ellipsis text-left px-2 text-sm select-all">{path}</td>
|
||||
<td class="w-1/8 text-ellipsis text-right flex justify-end px-2">
|
||||
<IconButton aria-label="Open" color="secondary" icon={mdiDotsVertical} variant="ghost" /></td
|
||||
>
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
</SettingAccordion>
|
||||
</SettingAccordionState> -->
|
||||
</section>
|
||||
</section>
|
||||
</AdminPageLayout>
|
||||
|
||||
Reference in New Issue
Block a user