tangled
alpha
login
or
join now
retr0.id
/
pdsls
forked from
pds.ls/pdsls
1
fork
atom
atproto explorer
1
fork
atom
overview
issues
pulls
pipelines
prevent duplicate descriptions
juli.ee
4 months ago
e1e994fb
d82166ee
verified
This commit was signed with the committer's
known signature
.
juli.ee
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+11
-1
1 changed file
expand all
collapse all
unified
split
src
components
lexicon-schema.tsx
+11
-1
src/components/lexicon-schema.tsx
···
296
296
</span>
297
297
</div>
298
298
299
299
-
<Show when={props.def.description}>
299
299
+
<Show
300
300
+
when={
301
301
+
props.def.description &&
302
302
+
(props.def.properties ||
303
303
+
props.def.parameters ||
304
304
+
props.def.input ||
305
305
+
props.def.output ||
306
306
+
props.def.errors ||
307
307
+
props.def.record)
308
308
+
}
309
309
+
>
300
310
<p class="text-sm text-neutral-700 dark:text-neutral-300">{props.def.description}</p>
301
311
</Show>
302
312