aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Author.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/components/Author.tsx')
-rw-r--r--webui/src/components/Author.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/Author.tsx b/webui/src/components/Author.tsx
index 272ca5b5..593b5d36 100644
--- a/webui/src/components/Author.tsx
+++ b/webui/src/components/Author.tsx
@@ -15,7 +15,7 @@ type Props = AuthoredFragment & {
const Author = ({ author, ...props }: Props) => {
return (
<Tooltip title={`Goto the ${author.displayName}'s profile.`}>
- <Link {...props} component={RouterLink} to={`/user/${author.humanId}`}>
+ <Link {...props} component={RouterLink} to={`/user/${author.id}`}>
{author.displayName}
</Link>
</Tooltip>