Skip to content

Commit

Permalink
Reduce the height of the sensor iframe
Browse files Browse the repository at this point in the history
Due to merging temperature graphs in the dashboard
  • Loading branch information
harryjubb authored Feb 25, 2022
1 parent a66efe9 commit 4220a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/frontend/src/components/HiveDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function HiveDetail() {
<Typography variant="h4" gutterBottom>
Sensor data
</Typography>
<iframe title={`${hive.name} sensor data`} style={{width: '100%', height: '100vh', border: 'none'}} src={hive.dashboardUrl}></iframe>
<iframe title={`${hive.name} sensor data`} style={{width: '100%', height: '50vh', border: 'none'}} src={hive.dashboardUrl}></iframe>
</> : <></>
}
</>
Expand Down

0 comments on commit 4220a34

Please sign in to comment.