You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-06 10:22:45 +03:00
AppTile: Fix typo in property name
This commit is contained in:
@@ -53,7 +53,7 @@ export default React.createClass({
|
|||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<div className={this.props.fullWdith ? "mx_AppTileFullWidth" : "mx_AppTile"} id={this.props.id}>
|
<div className={this.props.fullWidth ? "mx_AppTileFullWidth" : "mx_AppTile"} id={this.props.id}>
|
||||||
<div className="mx_AppTileMenuBar">
|
<div className="mx_AppTileMenuBar">
|
||||||
{this.props.name}
|
{this.props.name}
|
||||||
<span className="mx_AppTileMenuBarWidgets">
|
<span className="mx_AppTileMenuBarWidgets">
|
||||||
|
@@ -177,8 +177,8 @@ module.exports = React.createClass({
|
|||||||
id={app.id}
|
id={app.id}
|
||||||
url={app.url}
|
url={app.url}
|
||||||
name={app.name}
|
name={app.name}
|
||||||
fullWdith={arr.length<2 ? true : false}
|
|
||||||
roomId={this.props.roomId}
|
roomId={this.props.roomId}
|
||||||
|
fullWidth={arr.length<2 ? true : false}
|
||||||
userId={this.props.userId}
|
userId={this.props.userId}
|
||||||
/>);
|
/>);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user