'update-note-text':(s,{id,text})=>{constnote_s=s.notes.find(n=>n.note.id===id);note_s.note.text=text;},// updates underlying note text (i.e. the "model", not the app note_state) "in the background" (e.g. from a server-pushed update), regardless of whether it's being edited; "save" is a separate action, below