diff options
Diffstat (limited to 'apps/web/components/dashboard')
| -rw-r--r-- | apps/web/components/dashboard/search/QueryExplainerTooltip.tsx | 11 |
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> |
