diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-01 13:33:51 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-01 13:33:51 +0200 |
commit | 910568bc886bc2167c7c136f0ee003163e70af82 (patch) | |
tree | 3ae0060a1a6e0ce3566d32bc32037bb754d9853e /components | |
parent | 5ccf6971ef11daf1bc6aabfcfdb015f47b8a9798 (diff) |
posts fetched from server
Diffstat (limited to 'components')
-rw-r--r-- | components/tag.tsx | 2 |
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)) |