Skip to content
Snippets Groups Projects
Unverified Commit 08a16580 authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #2677 from paulkaplan/fix-safari-device-row

Prevent react recycling components causing safari render bug
parents c91c18e1 11ff2276
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ const ScanningStep = props => ( ...@@ -30,7 +30,7 @@ const ScanningStep = props => (
</div> </div>
</div> </div>
) : ( ) : (
<Box className={styles.deviceTilePane}> <div className={styles.deviceTilePane}>
{props.deviceList.map(device => {props.deviceList.map(device =>
(<DeviceTile (<DeviceTile
key={device.peripheralId} key={device.peripheralId}
...@@ -41,7 +41,7 @@ const ScanningStep = props => ( ...@@ -41,7 +41,7 @@ const ScanningStep = props => (
onConnecting={props.onConnecting} onConnecting={props.onConnecting}
/>) />)
)} )}
</Box> </div>
) )
) : ( ) : (
<Box className={styles.instructions}> <Box className={styles.instructions}>
......
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