From 721522bfa4f5456872bc6dbae483fc2fc1389458 Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 12 Jan 2026 16:32:45 +0000 Subject: [PATCH] adding obsidian support --- nginx/vue/src/views/Notes.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/vue/src/views/Notes.vue b/nginx/vue/src/views/Notes.vue index 2a7e52e..8aa2526 100644 --- a/nginx/vue/src/views/Notes.vue +++ b/nginx/vue/src/views/Notes.vue @@ -6,7 +6,7 @@ import axios from "axios"; const note = ref(null); const fetchNote = async () => { - const response = await axios.post("/api/notes/Welcome"); + const response = await axios.get("/api/notes/Welcome"); note.value = response.data; };