aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/tag.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/tag.tsx b/components/tag.tsx
index 6cacb89..48c75ce 100644
--- a/components/tag.tsx
+++ b/components/tag.tsx
@@ -12,7 +12,7 @@ export default function Tags(props: {
export function Tag(props: {
name: string;
}) {
- return <a className="tag" href={"/search?tag=" + props.name} style={{
+ return <a className="tag" href={"/search?q=" + props.name} style={{
"--tag-hue": props.name
.split("")
.map(char => char.charCodeAt(0))