tangled
alpha
login
or
join now
pds.ls
/
pdsls
398
fork
atom
atmosphere explorer
pds.ls
tool
typescript
atproto
398
fork
atom
overview
issues
1
pulls
pipelines
pds inactive repo style
handle.invalid
8 months ago
10b1d1cb
6d6d07ee
+3
-3
1 changed file
expand all
collapse all
unified
split
src
views
pds.tsx
+3
-3
src/views/pds.tsx
···
123
123
<A
124
124
href={`/at://${repo.did}`}
125
125
classList={{
126
126
-
"w-full flex font-mono relative": true,
126
126
+
"w-full flex font-mono items-center relative": true,
127
127
"text-lightblue-500": repo.active,
128
128
-
"text-gray-300 dark:text-gray-600": !repo.active,
128
128
+
"text-neutral-400 dark:text-neutral-500": !repo.active,
129
129
}}
130
130
>
131
131
<Show when={!repo.active}>
132
132
<div class="absolute -left-5">
133
133
<Tooltip text={repo.status ?? "???"}>
134
134
-
<span>🪦</span>
134
134
+
<div class="i-lucide-skull text-lg" />
135
135
</Tooltip>
136
136
</div>
137
137
</Show>