Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 727e6da

Browse files
committed
Fix key attr placement in UserSettings
1 parent c3a9658 commit 727e6da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/structures/UserSettings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,8 @@ module.exports = React.createClass({
364364

365365
this._renderLabs = function () {
366366
let features = LABS_FEATURES.map(feature => (
367-
<div>
368-
<input key={feature}
367+
<div key={feature}>
368+
<input
369369
type="checkbox"
370370
id={feature}
371371
name={feature}

0 commit comments

Comments
 (0)