Skip to content
Snippets Groups Projects
Commit 9995b40a authored by MonaS8's avatar MonaS8
Browse files

Use input event instead of keyup event

parent 1c558502
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@
class="form-control mt-2 h-100"
rows="10"
v-model="notes.getNote(selectedNote)!.content"
@keyup="updateNote"
@input="updateNote"
></textarea>
</div>
</div>
......@@ -134,9 +134,9 @@
/**
* Updates the content of the currently selected note with the new text provided in 'payload'.
* @param payload - The keyboard event containing the updated text.
* @param payload - The event.
*/
function updateNote(payload: KeyboardEvent) {
function updateNote(payload: Event) {
notes.update(
selectedNote.value,
(payload.target as HTMLTextAreaElement).value,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment