1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Fixed wrong type to justified prop

This commit is contained in:
wmwragg
2016-09-07 10:59:06 +01:00
parent 7e60012bd4
commit dd186dd612

View File

@@ -175,7 +175,7 @@ module.exports = React.createClass({
queryList.push(
<div className={classes} key={i} >
<AddressTile user={this.state.queryList[i]} justified="true" />
<AddressTile user={this.state.queryList[i]} justified={true} />
</div>
);
}