tangled
alpha
login
or
join now
pds.ls
/
pdsls
399
fork
atom
atmosphere explorer
pds.ls
tool
typescript
atproto
399
fork
atom
overview
issues
pulls
pipelines
break-words lexicon schema description
handle.invalid
2 months ago
fbbf87ae
a5d5c746
verified
This commit was signed with the committer's
known signature
.
handle.invalid
SSH Key Fingerprint:
SHA256:mBrT4x0JdzLpbVR95g1hjI1aaErfC02kmLRkPXwsYCk=
+3
-1
1 changed file
expand all
collapse all
unified
split
src
components
lexicon-schema.tsx
+3
-1
src/components/lexicon-schema.tsx
···
268
268
<ConstraintsList property={props.property.items!} />
269
269
</Show>
270
270
<Show when={props.property.description && !props.hideNameType}>
271
271
-
<p class="text-sm text-neutral-700 dark:text-neutral-300">{props.property.description}</p>
271
271
+
<p class="text-sm wrap-break-word text-neutral-700 dark:text-neutral-300">
272
272
+
{props.property.description}
273
273
+
</p>
272
274
</Show>
273
275
</div>
274
276
);