Skip to content

Commit

Permalink
Merge pull request #61 from codersagainstcovidorg/icon-bug-fix
Browse files Browse the repository at this point in the history
Fixed icons not showing on location details page
  • Loading branch information
jorge-caballero authored Apr 1, 2020
2 parents 7084fbc + d79c2a8 commit fb3b9ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/LocationDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const LocationDetails = ({ location, expanded, details }: DetailsProps) => {
<Grid key={2} item md={3} xs={12}>
<List>
{details.map((item: any) => {
return location[item.key] === 'TRUE' ? (
return location[item.key] === true ? (
<ListItem key={item.key}>
<ListItemAvatar>
<Avatar>
Expand Down

0 comments on commit fb3b9ed

Please sign in to comment.