From cd8ba4b634cbaf1656a2631eaf02f0e5dcdf397d Mon Sep 17 00:00:00 2001 From: dakkar Date: Fri, 29 Dec 2023 14:54:01 +0000 Subject: [PATCH] always go to tag page from widget #264 --- packages/frontend/src/widgets/WidgetSearch.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/frontend/src/widgets/WidgetSearch.vue b/packages/frontend/src/widgets/WidgetSearch.vue index 0106df9c4..999913977 100644 --- a/packages/frontend/src/widgets/WidgetSearch.vue +++ b/packages/frontend/src/widgets/WidgetSearch.vue @@ -23,8 +23,6 @@ import { i18n } from '@/i18n.js'; import * as os from '@/os.js'; import { useRouter } from '@/router.js'; import { GetFormResultType } from '@/scripts/form.js'; -import { $i } from '@/account.js'; -import { instance } from '@/instance.js'; const name = 'search'; @@ -62,7 +60,6 @@ let notePagination = ref(); let isLocalOnly = ref(false); let order = ref(true); let filetype = ref(null); -const notesSearchAvailable = (($i == null && instance.policies.canSearchNotes) || ($i != null && $i.policies.canSearchNotes)); function options(ev) { os.popupMenu([{ @@ -125,14 +122,11 @@ async function search() { return; } - if (!notesSearchAvailable && query.startsWith('#')) { - // can't really search, at least try handling hashtags + if (query.startsWith('#')) { router.push(`/tags/${encodeURIComponent(query.substring(1))}`); return; } - // TODO: if !notesSearchAvailable pop up an error message - notePagination.value = { endpoint: 'notes/search', limit: 10,