Fix empty descriptions rendering bad

This commit is contained in:
Ben C 2023-11-29 11:26:28 -05:00
parent e026f470fe
commit 6fc7762530
No known key found for this signature in database
2 changed files with 757 additions and 757 deletions

View File

@ -60,7 +60,7 @@ const HeadingTag = levelMap[level] ?? "h6";
</div>
)
}
{description && <p>{description}</p>}
{description ? <p>{description}</p> : <p>No Description Found</p>}
{
enumVals.length !== 0 && (
<>
@ -160,6 +160,7 @@ const HeadingTag = levelMap[level] ?? "h6";
div.tool-links {
display: flex;
gap: .5rem;
}
span {

File diff suppressed because it is too large Load Diff