Fix authentication dialog not working for proxy
This commit is contained in:
@@ -24,7 +24,7 @@ const LoginModal = React.createClass({
|
|||||||
if (!this.props.show) {
|
if (!this.props.show) {
|
||||||
theServer = '';
|
theServer = '';
|
||||||
} else if (this.props.authInfo.isProxy) {
|
} else if (this.props.authInfo.isProxy) {
|
||||||
theServer = `The proxy ${authInfo.host}:${authInfo.port}`;
|
theServer = `The proxy ${this.props.authInfo.host}:${this.props.authInfo.port}`;
|
||||||
} else {
|
} else {
|
||||||
theServer = `The server ${this.props.authServerURL}`;
|
theServer = `The server ${this.props.authServerURL}`;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user