mirror of
https://github.com/usememos/memos.git
synced 2025-03-05 01:53:14 +08:00
fix: hr in edited content do not trigger folding (#748)
This commit is contained in:
parent
334da5e903
commit
d51af7e98a
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ const MemoContent: React.FC<Props> = (props: Props) => {
|
||||||
expandButtonStatus: -1,
|
expandButtonStatus: -1,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, [user?.localSetting.enableFoldMemo]);
|
}, [user?.localSetting.enableFoldMemo, content]);
|
||||||
|
|
||||||
const handleMemoContentClick = async (e: React.MouseEvent) => {
|
const handleMemoContentClick = async (e: React.MouseEvent) => {
|
||||||
if (onMemoContentClick) {
|
if (onMemoContentClick) {
|
||||||
|
|
Loading…
Reference in a new issue