Skip to content

Commit 627beef

Browse files
authored
remove row capitalization (#75)
1 parent 1da049d commit 627beef

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/renderer/components/ConnectionRow.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
Divider,
77
MenuItem,
88
Menu,
9-
capitalize,
109
Tooltip,
1110
makeStyles,
1211
} from '@material-ui/core';
@@ -140,9 +139,7 @@ const ConnectionRow: React.FC<ConnectionRowProps> = ({
140139
</IconButton>
141140
</Grid>
142141
<Grid item xs={3}>
143-
<Typography variant="h6">
144-
{capitalize(connection?.conn?.name || '')}
145-
</Typography>
142+
<Typography variant="h6">{connection?.conn?.name || ''}</Typography>
146143
</Grid>
147144
<Grid item xs={4}>
148145
<Link to={'/view_connection/' + connection?.id || ''} />

0 commit comments

Comments
 (0)