Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/Reference/DocRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ const DocRow = ({
'flex-1 lg:pr-8': referenceItem.dynamicFee,
})}
>
{referenceItem.description && (
<div className="mb-6">
<h2 className="text-lg font-medium mb-4">Description</h2>
<p>{referenceItem.description}</p>
</div>
)}

<MDXRemote {...itemDoc.mdxSource} components={docComponents} />
{dynamicFeeForkName && dynamicFeeDocMdx && (
<MDXRemote
Expand Down
4 changes: 2 additions & 2 deletions components/Reference/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const columns = (isPrecompiled: boolean) => [
/>
),
width: 200,
className: 'hidden lg:table-cell',
className: 'hidden md:table-cell',
},
{
Header: !isPrecompiled ? 'Stack Output' : 'Output',
Expand All @@ -54,7 +54,7 @@ const columns = (isPrecompiled: boolean) => [
/>
),
width: 100,
className: 'hidden lg:table-cell',
className: 'hidden md:table-cell',
},
{
Header: 'Description',
Expand Down