Human de-linting

pull/21833/head
Travis Ralston 2019-05-15 13:55:50 -06:00
parent 25e3f7888e
commit 6e3b06f364
3 changed files with 7 additions and 4 deletions

View File

@ -200,7 +200,8 @@ module.exports = React.createClass({
'underlinedServerName': () => {
return <TextWithTooltip
class="mx_Login_underlinedServerName"
tooltip={this.props.serverConfig.hsUrl}>
tooltip={this.props.serverConfig.hsUrl}
>
{this.props.serverConfig.hsName}
</TextWithTooltip>;
},

View File

@ -284,8 +284,9 @@ export default class PasswordLogin extends React.Component {
signInToText = _t('Sign in to your Matrix account on <underlinedServerName />', {}, {
'underlinedServerName': () => {
return <TextWithTooltip
class="mx_Login_underlinedServerName"
tooltip={this.props.serverConfig.hsUrl}>
class="mx_Login_underlinedServerName"
tooltip={this.props.serverConfig.hsUrl}
>
{this.props.serverConfig.hsName}
</TextWithTooltip>;
},

View File

@ -522,7 +522,8 @@ module.exports = React.createClass({
'underlinedServerName': () => {
return <TextWithTooltip
class="mx_Login_underlinedServerName"
tooltip={this.props.serverConfig.hsUrl}>
tooltip={this.props.serverConfig.hsUrl}
>
{this.props.serverConfig.hsName}
</TextWithTooltip>;
},