You've already forked SmartisanNote.Remake
开始完善便签新建、编辑逻辑
This commit is contained in:
@@ -30,7 +30,9 @@ export const addNote = async (note) => {
|
||||
updatedAt: new Date().toISOString(),
|
||||
isStarred: note.isStarred || false,
|
||||
isTop: note.isTop || false,
|
||||
hasImage: note.hasImage || false
|
||||
hasImage: note.hasImage || false,
|
||||
isDeleted: note.isDeleted || false,
|
||||
deletedAt: note.deletedAt || null
|
||||
};
|
||||
|
||||
const notes = await getNotes();
|
||||
|
||||
Reference in New Issue
Block a user