Merge pull request #988 from matrix-org/matthew/room-avatar-event

Matthew/room avatar event
This commit is contained in:
Matthew Hodgson 2017-06-01 14:43:29 +01:00 committed by GitHub
commit ecbc724a3f
6 changed files with 104 additions and 3 deletions

View file

@ -118,7 +118,7 @@ module.exports = React.createClass({
});
options.push({ value: "Custom", text: "Custom level" });
options = options.map((op) => {
return <option value={op.value}>{op.text}</option>;
return <option value={op.value} key={op.value}>{op.text}</option>;
});
select =