Compare commits

...

1 Commits

Author SHA1 Message Date
ammarahm-ed
59264d1ed0 mobile: fix appending link to empty note stuck 2023-06-15 16:43:04 +05:00

View File

@@ -354,7 +354,7 @@ const ShareView = ({ quicknote = false }) => {
let raw = await db.content.raw(appendNote.contentId);
_note = {
content: {
data: raw.data + noteContent.current,
data: (raw?.data || "") + noteContent.current,
type: "tiptap"
},
id: appendNote.id,