diff --git a/src/components/builder-table.astro b/src/components/builder-table.astro index bd7f096..791b820 100755 --- a/src/components/builder-table.astro +++ b/src/components/builder-table.astro @@ -7,11 +7,10 @@ type Package = { id: number; documentId: string; package_name: string; - repository: string; - status_i686: string; - status_i686_version: string; status_x86_64: string; status_x86_64_version: string; + status_i686: string; + status_i686_version: string; status_ARMv6h: string; status_ARMv6h_version: string; Status_ARMv7h: string; @@ -67,11 +66,6 @@ let totalPackages = apiResponse.meta.pagination.total; class="whitespace-nowrap py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-0" >Package Name - Repository - - {row.repository ?? ""} - - - ${row.repository ?? ""} - Description - Repository @@ -90,9 +84,6 @@ let totalPackages = apiResponse.meta.pagination.total; {p.description} - - {p.repository} - )) } @@ -153,9 +144,6 @@ let totalPackages = apiResponse.meta.pagination.total; ${p.description} - - ${p.repository} - `; dataRows.appendChild(tr); });