Skip to content

Commit 3c83c4b

Browse files
author
David Emory
committed
fix(form): Add missing key field in settings-selector-panel
1 parent 17df0c7 commit 3c83c4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/components/form/settings-selector-panel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ class SettingsSelectorPanel extends Component {
254254
</Col>
255255
<Col xs={12} style={{ textAlign: 'center' }}>
256256
{transitModes.map((mode, k) => {
257-
return (<div style={{ display: 'inline-block', width: 64 }}>
257+
return (<div style={{ display: 'inline-block', width: 64 }} key={k}>
258258
<ModeButton
259259
enabled={modeHasTransit}
260260
active={this._modeIsActive(mode)}

0 commit comments

Comments
 (0)