aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-09-13 21:37:56 +0100
committerGitHub <noreply@github.com>2025-09-13 21:37:56 +0100
commita92ada7727b2596414aafe204e5001eb066569cb (patch)
tree73e289791f83135dfa2f5cecc6fa1c4019679238 /apps/web/components/dashboard
parent3bae3aad9a62dbf2cc9a0038c90ea992166cc336 (diff)
downloadkarakeep-a92ada7727b2596414aafe204e5001eb066569cb.tar.zst
feat(search): add title search qualifier (#1940)
* fix(search): include link titles in title matcher * docs(search): add title qualifier * docs: remove title qualifier from v0.27 guide
Diffstat (limited to 'apps/web/components/dashboard')
-rw-r--r--apps/web/components/dashboard/search/QueryExplainerTooltip.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx b/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx
index e6abb9c9..529b7dd9 100644
--- a/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx
+++ b/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx
@@ -161,6 +161,17 @@ export default function QueryExplainerTooltip({
<TableCell>{matcher.url}</TableCell>
</TableRow>
);
+ case "title":
+ return (
+ <TableRow>
+ <TableCell>
+ {matcher.inverse
+ ? t("search.title_does_not_contain")
+ : t("search.title_contains")}
+ </TableCell>
+ <TableCell>{matcher.title}</TableCell>
+ </TableRow>
+ );
case "rssFeedName":
return (
<TableRow>