Skip to content

Commit 7156e68

Browse files
committed
use normal and bold to display links
Signed-off-by: David BRAQUART <[email protected]>
1 parent 4dd45b5 commit 7156e68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/profiles/modification/linked-path-display.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const LinkedPathDisplay: FunctionComponent<LinkedPathDisplayProps> = (props) =>
2222
return (
2323
<Typography
2424
sx={{
25-
fontWeight: 'bold',
25+
fontWeight: props.value || props.linkValidity === false ? 'bold' : 'normal',
2626
color: props.linkValidity === false ? theme.palette.error.main : undefined,
2727
}}
2828
>

0 commit comments

Comments
 (0)