From 774e23c572058e4e0878acc1b78845c00dc7f03b Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Mon, 10 Apr 2023 13:00:03 +0100 Subject: [PATCH] fix(Function): Add link to source file (#9360) --- apps/website/src/components/model/function/Function.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/website/src/components/model/function/Function.tsx b/apps/website/src/components/model/function/Function.tsx index ebf9d4904..d903f2ae2 100644 --- a/apps/website/src/components/model/function/Function.tsx +++ b/apps/website/src/components/model/function/Function.tsx @@ -6,7 +6,7 @@ import { FunctionBody } from './FunctionBody'; const OverloadSwitcher = dynamic(async () => import('../../OverloadSwitcher')); export function Function({ item }: { item: ApiFunction }) { - const header =
; + const header =
; if (item.getMergedSiblings().length > 1) { const overloads = item @@ -23,7 +23,7 @@ export function Function({ item }: { item: ApiFunction }) { return (
-
+ {header}
);