Mobile: Fixes #13544: Fixed keyboard input issue in note title (#14070)

This commit is contained in:
mrjo118
2026-01-10 09:53:21 +00:00
committed by GitHub
parent b310bfd0c2
commit cce4b76e3f
@@ -151,7 +151,7 @@ shared.saveNoteButton_press = async function(comp: BaseNoteScreenComponent, stat
const savedNote = 'fields' in saveOptions && !saveOptions.fields.length ? { ...note } : await Note.save(note, saveOptions);
const stateNote = state.note;
const stateNote = comp.state.note;
// Note was reloaded while being saved.
if (!recreatedNote && (!stateNote || stateNote.id !== savedNote.id)) return releaseMutex();