tangled
alpha
login
or
join now
bas.sh
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atmosphere explorer
0
fork
atom
overview
issues
pulls
pipelines
include inactive repos count
handle.invalid
1 month ago
a41e55ae
dd7bc346
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+10
-2
1 changed file
expand all
collapse all
unified
split
src
views
pds.tsx
+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
229
-
<div class="flex min-w-50 items-center justify-around gap-3 pb-2">
230
230
-
<p>{repos()?.length} loaded</p>
229
229
+
<div class="flex items-center gap-3 pb-2">
230
230
+
<p>
231
231
+
{repos()?.length} loaded
232
232
+
<Show when={repos()?.some((r) => !r.active)}>
233
233
+
{" · "}
234
234
+
<span class="text-neutral-500 dark:text-neutral-400">
235
235
+
{repos()?.filter((r) => !r.active).length} inactive
236
236
+
</span>
237
237
+
</Show>
238
238
+
</p>
231
239
<Show when={cursor()}>
232
240
<Button
233
241
onClick={() => refetch()}