From 12280afe70eb47319bcf62680906c41a3cde3c64 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 29 Dec 2022 15:44:26 +0100 Subject: [PATCH] feat: allow searching for statuses (#632) --- components/search/SearchResult.vue | 1 + components/search/SearchWidget.vue | 7 ++++--- components/search/types.ts | 5 +++-- components/status/StatusCard.vue | 2 +- composables/masto.ts | 10 ++++++++++ composables/search.ts | 3 ++- pages/[[server]]/tags/[tag].vue | 4 ++++ 7 files changed, 25 insertions(+), 7 deletions(-) diff --git a/components/search/SearchResult.vue b/components/search/SearchResult.vue index 94fdba3c..0ee21e10 100644 --- a/components/search/SearchResult.vue +++ b/components/search/SearchResult.vue @@ -11,6 +11,7 @@ const onActivate = () => { +
{{ result.action!.label }}
diff --git a/components/search/SearchWidget.vue b/components/search/SearchWidget.vue index c210431a..e16ac7c9 100644 --- a/components/search/SearchWidget.vue +++ b/components/search/SearchWidget.vue @@ -1,6 +1,6 @@