mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Merge pull request #540 from matrix-org/rav/fix_npe
Fix NPE in LoggedInView
This commit is contained in:
commit
b86f9f362a
2 changed files with 2 additions and 2 deletions
|
@ -199,7 +199,7 @@ export default React.createClass({
|
|||
var topBar;
|
||||
if (this.props.hasNewVersion) {
|
||||
topBar = <NewVersionBar version={this.props.version} newVersion={this.props.newVersion}
|
||||
releaseNotes={this.state.newVersionReleaseNotes}
|
||||
releaseNotes={this.props.newVersionReleaseNotes}
|
||||
/>;
|
||||
}
|
||||
else if (this.props.matrixClient.isGuest()) {
|
||||
|
|
|
@ -26,7 +26,7 @@ import React from 'react';
|
|||
*/
|
||||
export default function(WrappedComponent) {
|
||||
return React.createClass({
|
||||
displayName: "MatrixClient<" + WrappedComponent.displayName + ">",
|
||||
displayName: "WithMatrixClient<" + WrappedComponent.displayName + ">",
|
||||
|
||||
contextTypes: {
|
||||
matrixClient: React.PropTypes.instanceOf(Matrix.MatrixClient).isRequired,
|
||||
|
|
Loading…
Reference in a new issue