From 227bda3a935c8056a552d933049e4981018e1577 Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Wed, 13 Jul 2016 00:41:31 +0900 Subject: [PATCH] Fix authentication dialog not working for proxy --- src/browser/components/loginModal.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/components/loginModal.jsx b/src/browser/components/loginModal.jsx index 45f32fd2..64337272 100644 --- a/src/browser/components/loginModal.jsx +++ b/src/browser/components/loginModal.jsx @@ -24,7 +24,7 @@ const LoginModal = React.createClass({ if (!this.props.show) { theServer = ''; } 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 { theServer = `The server ${this.props.authServerURL}`; }