From 50f89aff581ffbc3278b90a458b1baa158805569 Mon Sep 17 00:00:00 2001 From: tienshaoku Date: Sun, 23 Mar 2025 12:46:11 +0800 Subject: [PATCH 1/2] fix: missing description section --- components/Reference/DocRow.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/Reference/DocRow.tsx b/components/Reference/DocRow.tsx index b0de7d74..da020b87 100644 --- a/components/Reference/DocRow.tsx +++ b/components/Reference/DocRow.tsx @@ -107,6 +107,13 @@ const DocRow = ({ 'flex-1 lg:pr-8': referenceItem.dynamicFee, })} > + {referenceItem.description && ( +
+

Description

+

{referenceItem.description}

+
+ )} + {dynamicFeeForkName && dynamicFeeDocMdx && ( Date: Sun, 23 Mar 2025 12:57:02 +0800 Subject: [PATCH 2/2] fix: broken md layout --- components/Reference/columns.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Reference/columns.tsx b/components/Reference/columns.tsx index dfa56f10..5407f4f3 100644 --- a/components/Reference/columns.tsx +++ b/components/Reference/columns.tsx @@ -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', @@ -54,7 +54,7 @@ const columns = (isPrecompiled: boolean) => [ /> ), width: 100, - className: 'hidden lg:table-cell', + className: 'hidden md:table-cell', }, { Header: 'Description',