fix(server): set default doc title to Untitled on email (#11152)

close CLOUD-181
This commit is contained in:
fengmk2
2025-03-25 12:58:43 +00:00
parent 27d07a6e24
commit ad4e1ed7de
4 changed files with 102 additions and 1 deletions
@@ -10,7 +10,7 @@ export interface DocProps {
export const Doc = (props: DocProps) => {
return (
<Link href={props.url}>
<Bold>{props.title}</Bold>
<Bold>{props.title || 'Untitled'}</Bold>
</Link>
);
};