Changed notes to left aligned and accept more text per line

This commit is contained in:
Mitchell McCaffrey
2021-02-13 10:45:28 +11:00
parent ed605fe55b
commit 93f45c738f
2 changed files with 6 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ function NoteMenu({
}, [isOpen, note, wasOpen, noteNode]);
function handleTextChange(event) {
const text = event.target.value.substring(0, 144);
const text = event.target.value.substring(0, 1024);
note && onNoteChange({ ...note, text: text });
}