mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-15 09:06:19 +08:00
fix(server): set default doc title to Untitled on email (#11152)
close CLOUD-181
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user