atmosphere explorer

include inactive repos count

handle.invalid a41e55ae dd7bc346

verified
+10 -2
+10 -2
src/views/pds.tsx
··· 226 226 </div> 227 227 <Show when={!location.hash || location.hash === "#repos"}> 228 228 <div class="dark:bg-dark-500 fixed bottom-0 z-5 flex w-screen justify-center bg-neutral-100 pt-2 pb-4"> 229 - <div class="flex min-w-50 items-center justify-around gap-3 pb-2"> 230 - <p>{repos()?.length} loaded</p> 229 + <div class="flex items-center gap-3 pb-2"> 230 + <p> 231 + {repos()?.length} loaded 232 + <Show when={repos()?.some((r) => !r.active)}> 233 + {" · "} 234 + <span class="text-neutral-500 dark:text-neutral-400"> 235 + {repos()?.filter((r) => !r.active).length} inactive 236 + </span> 237 + </Show> 238 + </p> 231 239 <Show when={cursor()}> 232 240 <Button 233 241 onClick={() => refetch()}