1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Mobile: Fixes #10589: Fix selected note changes on moving to a different folder (#10630)

This commit is contained in:
Henry Heino
2024-06-18 01:59:08 -07:00
committed by GitHub
parent 573ea6051c
commit ed31d8202b
8 changed files with 78 additions and 24 deletions

View File

@ -102,6 +102,7 @@ shared.saveNoteButton_press = async function(comp: BaseNoteScreenComponent, fold
const saveOptions = {
userSideValidation: true,
fields: BaseModel.diffObjectsFields(comp.state.lastSavedNote, note),
dispatchOptions: { preserveSelection: true },
};
const hasAutoTitle = comp.state.newAndNoTitleChangeNoteId || (isProvisionalNote && !note.title);