decrypt notes
This commit is contained in:
@@ -12,7 +12,7 @@ const emit = defineEmits<{
|
||||
const results = computed<Note[]>(() => {
|
||||
return (
|
||||
props.autocompleteText ? findNotesByByTitle(props.autocompleteText) : notes.value
|
||||
).filter((note) => note.id !== activeNote.value?.id)
|
||||
).filter((note) => note.id !== activeNote.value?.id).slice(10)
|
||||
})
|
||||
|
||||
const activeResult = ref<Note>()
|
||||
|
||||
Reference in New Issue
Block a user