feat: search all resources for authors

This commit is contained in:
max_richter 2023-08-12 21:34:00 +02:00
parent 8703f5fda4
commit 1cf0d91af5
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ export default function Greet(
subline={[
author && {
title: author,
href: `/series?q=${encodeURIComponent(author)}`,
href: `/?q=${encodeURIComponent(author)}`,
},
date.toString(),
]}

View File

@ -32,7 +32,7 @@ export default function Greet(
subline={[
author && {
title: author,
href: `/movies?q=${encodeURIComponent(author)}`,
href: `/?q=${encodeURIComponent(author)}`,
},
date.toString(),
]}

View File

@ -32,7 +32,7 @@ export default function Greet(
subline={[
author && {
title: author,
href: `/series?q=${encodeURIComponent(author)}`,
href: `/?q=${encodeURIComponent(author)}`,
},
date.toString(),
]}