Skip to content

Commit

Permalink
#347 Fix drop down value
Browse files Browse the repository at this point in the history
  • Loading branch information
achichikalova committed Jun 1, 2022
1 parent 2ce2f2b commit 28e91e2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions webapp/src/components/UpdateSocialLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const UpdateSocialLinks = ({ socialName, networkData }: SocialLinksProps) => {
/>
Twitter
</MenuItem>
<MenuItem value="linkedIn">
<MenuItem value="linkedin">
<LinkedInIcon
color="primary"
sx={{
Expand All @@ -67,19 +67,24 @@ const UpdateSocialLinks = ({ socialName, networkData }: SocialLinksProps) => {
/>
LinkedIn
</MenuItem>
<MenuItem value="portfolio">
<MenuItem value="website">
<LanguageIcon
color="primary"
sx={{
justifyContent: 'flex-start',
mr: 1,
}}
/>
Portfolio
Website
</MenuItem>
</Select>
</FormControl>
<TextField type="text" name={socialNetworks} variant="standard" />
<TextField
type="text"
name={socialNetworks}
value={networkData}
variant="standard"
/>
</Grid>
);
};
Expand Down

0 comments on commit 28e91e2

Please sign in to comment.