Skip to content
Snippets Groups Projects
Commit 65f3dc83 authored by Janne Alatalo's avatar Janne Alatalo :neutral_face:
Browse files

Fix linter error

parent 1e3647cd
No related branches found
No related tags found
No related merge requests found
Pipeline #4044 passed
...@@ -110,29 +110,31 @@ class PointMap extends Component { ...@@ -110,29 +110,31 @@ class PointMap extends Component {
return ( return (
<Card style={styles.card}> <Card style={styles.card}>
<CardContent> <CardActionArea>
<Typography gutterBottom variant="headline" component="h3"> <CardContent>
{name} <Typography gutterBottom variant="headline" component="h3">
</Typography> {name}
<Typography component="p"> </Typography>
{`Average speed direction 1: ${avg_speed_dir1} km/h`} <Typography component="p">
</Typography> {`Average speed direction 1: ${avg_speed_dir1} km/h`}
<Typography component="p"> </Typography>
{`Average speed direction 2: ${avg_speed_dir2} km/h`} <Typography component="p">
</Typography> {`Average speed direction 2: ${avg_speed_dir2} km/h`}
<Typography component="p"> </Typography>
{`Normal traffic flow direction 1: ${norm_flow_dir1} km/h`} <Typography component="p">
</Typography> {`Normal traffic flow direction 1: ${norm_flow_dir1} km/h`}
<Typography component="p"> </Typography>
{`Normal traffic flow direction 2: ${norm_flow_dir2} km/h`} <Typography component="p">
</Typography> {`Normal traffic flow direction 2: ${norm_flow_dir2} km/h`}
<Typography component="p"> </Typography>
{`Traffic volume direction 1: ${traffic_vol_dir1}/5min`} <Typography component="p">
</Typography> {`Traffic volume direction 1: ${traffic_vol_dir1}/5min`}
<Typography component="p"> </Typography>
{`Traffic volume direction 2: ${traffic_vol_dir2}/5min`} <Typography component="p">
</Typography> {`Traffic volume direction 2: ${traffic_vol_dir2}/5min`}
</CardContent> </Typography>
</CardContent>
</CardActionArea>
<CardActions> <CardActions>
<Button size="small" color="primary" onClick={() => this.setState(close_card)}> <Button size="small" color="primary" onClick={() => this.setState(close_card)}>
Close Close
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment