More equalses

pull/3530/head
David Baker 2017-03-28 16:34:35 +01:00
parent 83b7f94609
commit c72a49d229
1 changed files with 2 additions and 2 deletions

View File

@ -719,9 +719,9 @@ module.exports = React.createClass({
); );
} }
const emailThreepids = this.props.threepids.filter((tp) => tp.medium == "email"); const emailThreepids = this.props.threepids.filter((tp) => tp.medium === "email");
let emailNotificationsRow; let emailNotificationsRow;
if (emailThreepids.length == 0) { if (emailThreepids.length === 0) {
emailNotificationsRow = <div> emailNotificationsRow = <div>
Add an email address above to configure email notifications Add an email address above to configure email notifications
</div>; </div>;