quick changes

This commit is contained in:
Al Duncanson 2018-10-26 13:24:10 -04:00
parent 4f064e546e
commit 66fb1fc6f1
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ class ResponsiveDrawer extends React.Component {
<MenuIcon /> <MenuIcon />
</IconButton> </IconButton>
<Typography variant="title" color="inherit" noWrap> <Typography variant="title" color="inherit" noWrap>
The American Marten Marten Tracker
</Typography> </Typography>
</Toolbar> </Toolbar>
</AppBar> </AppBar>

View File

@ -78,7 +78,7 @@ class ViewSightings extends Component {
return ( return (
<ListItem button key={ sighting.id } onClick={() => this.getDetail(sighting.id, sighting.lat, sighting.lng, sighting.desc, sighting.type, sighting.confidence, sighting.date, sighting.time)}> <ListItem button key={ sighting.id } onClick={() => this.getDetail(sighting.id, sighting.lat, sighting.lng, sighting.desc, sighting.type, sighting.confidence, sighting.date, sighting.time)}>
<ListItemIcon><HomeIcon/></ListItemIcon> <ListItemIcon><HomeIcon/></ListItemIcon>
<ListItemText primary={`Type: ${sighting.type}`}/> <ListItemText primary={`${sighting.desc}`}/>
</ListItem> </ListItem>
) )
}) })