fix click outside
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import type { notesSourceValues } from '@/composables/useNotes'
|
||||
|
||||
interface Settings {
|
||||
preferredNotesSource: notesSourceValues
|
||||
preferredNotesSource: notesSourceValues | null
|
||||
}
|
||||
|
||||
export const preferredNotesSource = ref<notesSourceValues>(null)
|
||||
export const preferredNotesSource = ref<notesSourceValues | null>(null)
|
||||
|
||||
const updateSettings = () => {
|
||||
const settings: Settings = {
|
||||
|
||||
Reference in New Issue
Block a user