tangled
alpha
login
or
join now
citizen428.net
/
pdsls
forked from
pds.ls/pdsls
0
fork
atom
atproto explorer
0
fork
atom
overview
issues
pulls
pipelines
revert lexicon schema link change
handle.invalid
5 months ago
47c0e188
1f59b295
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+16
-7
1 changed file
expand all
collapse all
unified
split
src
views
record.tsx
+16
-7
src/views/record.tsx
···
199
<Show when={record()?.cid}>
200
{(cid) => <CopyMenu copyContent={cid()} label="Copy CID" icon="lucide--copy" />}
201
</Show>
202
-
<Show when={lexiconUri()}>
203
-
<NavMenu
204
-
href={`/${lexiconUri()}`}
205
-
icon="lucide--scroll-text"
206
-
label="Lexicon schema"
207
-
/>
208
-
</Show>
209
<Show when={externalLink()}>
210
{(externalLink) => (
211
<NavMenu
···
288
<span
289
class={`iconify ${validSchema() ? "lucide--check text-green-500 dark:text-green-400" : "lucide--x text-red-500 dark:text-red-400"}`}
290
></span>
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
291
</div>
292
</Show>
293
</div>
···
199
<Show when={record()?.cid}>
200
{(cid) => <CopyMenu copyContent={cid()} label="Copy CID" icon="lucide--copy" />}
201
</Show>
0
0
0
0
0
0
0
202
<Show when={externalLink()}>
203
{(externalLink) => (
204
<NavMenu
···
281
<span
282
class={`iconify ${validSchema() ? "lucide--check text-green-500 dark:text-green-400" : "lucide--x text-red-500 dark:text-red-400"}`}
283
></span>
284
+
</div>
285
+
</Show>
286
+
<Show when={lexiconUri()}>
287
+
<div>
288
+
<div class="flex items-center gap-1">
289
+
<span class="iconify lucide--scroll-text"></span>
290
+
<p class="font-semibold">Lexicon schema</p>
291
+
</div>
292
+
<div class="truncate text-xs">
293
+
<A
294
+
href={`/${lexiconUri()}`}
295
+
class="text-blue-400 hover:underline active:underline"
296
+
>
297
+
{lexiconUri()}
298
+
</A>
299
+
</div>
300
</div>
301
</Show>
302
</div>