From 87deb87456e9bfcfabb280671cad61e875dd6c54 Mon Sep 17 00:00:00 2001
From: dakkar <dakkar@thenautilus.net>
Date: Tue, 6 Aug 2024 20:32:03 +0100
Subject: [PATCH] put back bits that were lost in the merge

---
 packages/frontend/src/pages/search.note.vue | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/packages/frontend/src/pages/search.note.vue b/packages/frontend/src/pages/search.note.vue
index 3eae84ce64..7f36a2774c 100644
--- a/packages/frontend/src/pages/search.note.vue
+++ b/packages/frontend/src/pages/search.note.vue
@@ -90,6 +90,10 @@ const props = withDefaults(defineProps<{
 	host: '',
 });
 
+const searchQuery = ref(toRef(props, 'query').value);
+const notePagination = ref<Paging>();
+const user = ref<UserDetailed | null>(null);
+const hostInput = ref(toRef(props, 'host').value);
 const router = useRouter();
 const key = ref(0);
 const order = ref(false);
-- 
GitLab