Merge branch 'main' into main

This commit is contained in:
hulmgulm 2025-08-25 21:22:07 +02:00 committed by GitHub
commit f188408099
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -77,7 +77,7 @@ function DirectoryLink({ directory, style }: { directory: string, style?: CSSPro
openService.openDirectory(directory); openService.openDirectory(directory);
}; };
return <a className="tn-link" href="#" onClick={onClick} style={style}></a> return <a className="tn-link" href="#" onClick={onClick} style={style}>{directory}</a>
} else { } else {
return <span style={style}>{directory}</span>; return <span style={style}>{directory}</span>;
} }

View File

@ -98,7 +98,6 @@ function AddLinkDialogComponent() {
} }
const autocompleteRef = useRef<HTMLInputElement>(null); const autocompleteRef = useRef<HTMLInputElement>(null);
console.log("Add link ", linkType, hasSelection);
return ( return (
<Modal <Modal