Skip to content

Commit 449ab3a

Browse files
committed
fix(client/about): directory not displayed on desktop
1 parent 3060b49 commit 449ab3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/client/src/widgets/dialogs/about.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function DirectoryLink({ directory, style }: { directory: string, style?: CSSPro
7777
openService.openDirectory(directory);
7878
};
7979

80-
return <a className="tn-link" href="#" onClick={onClick} style={style}></a>
80+
return <a className="tn-link" href="#" onClick={onClick} style={style}>{directory}</a>
8181
} else {
8282
return <span style={style}>{directory}</span>;
8383
}

0 commit comments

Comments
 (0)