Unverified Commit 95675cdf authored by Gerald's avatar Gerald Committed by GitHub

fix: show full content in detail page (#2041)

fix #1373 again
parent 8328b5dd
......@@ -23,12 +23,13 @@ import "@/less/memo.less";
interface Props {
memo: Memo;
showCreator?: boolean;
showFull?: boolean;
showVisibility?: boolean;
showRelatedMemos?: boolean;
}
const Memo: React.FC<Props> = (props: Props) => {
const { memo, showCreator, showVisibility, showRelatedMemos } = props;
const { memo, showCreator, showFull, showVisibility, showRelatedMemos } = props;
const { i18n } = useTranslation();
const t = useTranslate();
const filterStore = useFilterStore();
......@@ -278,6 +279,7 @@ const Memo: React.FC<Props> = (props: Props) => {
</div>
<MemoContent
content={memo.content}
showFull={showFull}
onMemoContentClick={handleMemoContentClick}
onMemoContentDoubleClick={handleMemoContentDoubleClick}
/>
......
......@@ -45,7 +45,7 @@ const MemoDetail = () => {
(memo ? (
<>
<main className="relative flex-grow max-w-2xl w-full min-h-full flex flex-col justify-start items-start px-4">
<Memo memo={memo} showCreator showRelatedMemos />
<Memo memo={memo} showCreator showFull showRelatedMemos />
</main>
<div className="mt-4 w-full flex flex-row justify-center items-center gap-2">
<Link
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment