refactor: keep the title-only label uniform across search modes

This commit is contained in:
Philipinho
2026-08-24 22:24:51 +01:00
parent 528329f50c
commit 479808c1a9
2 changed files with 2 additions and 5 deletions
@@ -270,9 +270,7 @@ export function SearchSpotlightFilters({
aria-pressed={titleOnly}
onClick={() => setTitleOnly(!titleOnly)}
>
{contentType === "attachment"
? t("File name only")
: t("Title only")}
{t("Title only")}
</Button>
)}