From 952428c15d44667a27fdb4da7f479b2c78c8a2b7 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 15 Oct 2024 20:38:17 +0800 Subject: [PATCH] chore: update default max height --- web/src/components/MemoContent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/MemoContent/index.tsx b/web/src/components/MemoContent/index.tsx index c98fc9ee7..1310584c8 100644 --- a/web/src/components/MemoContent/index.tsx +++ b/web/src/components/MemoContent/index.tsx @@ -80,7 +80,7 @@ const MemoContent: React.FC = (props: Props) => { ref={memoContentContainerRef} className={clsx( "relative w-full max-w-full word-break text-base leading-snug space-y-2 whitespace-pre-wrap", - showCompactMode && "line-clamp-6 max-h-44", + showCompactMode && "line-clamp-6 max-h-60", contentClassName, )} onClick={handleMemoContentClick}