Fix boolean comparison.
This commit is contained in:
parent
f57b0d4cc7
commit
d29610bdd2
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ export default React.createClass({
|
|||
></iframe>
|
||||
</div>
|
||||
);
|
||||
} else if (this.isMixedContent() == true) {
|
||||
} else if (this.isMixedContent()) {
|
||||
appTileBody = (
|
||||
<div className="mx_AppTileBody">
|
||||
<AppWarning
|
||||
|
|
Loading…
Reference in a new issue