about summary refs log tree commit diff
path: root/src/components/Other
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Other')
-rw-r--r--src/components/Other/FSTracerFile.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Other/FSTracerFile.tsx b/src/components/Other/FSTracerFile.tsx
index 61c8e35..2bc58b4 100644
--- a/src/components/Other/FSTracerFile.tsx
+++ b/src/components/Other/FSTracerFile.tsx
@@ -6,7 +6,7 @@ interface FileComponentProps {
 
 export default function FileComponent(props: FileComponentProps) {
 	return (
-		<a href={`/file/${encodeURIComponent(props.file.absolute_path)}`}>
+		<a href={`/file/${encodeURIComponent(props.file.id)}`}>
 			<p className="underline">file: {props.file.absolute_path}</p>
 		</a>
 	)