From ee86ce814031608b229cf118eceb86ebab91a60f Mon Sep 17 00:00:00 2001 From: Artem Tarasov Date: Tue, 21 Jul 2020 15:10:09 +0300 Subject: [PATCH] added settings pass --- .../src/components/pages/Wizard/index.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/web/ASC.Web.Client/src/components/pages/Wizard/index.js b/web/ASC.Web.Client/src/components/pages/Wizard/index.js index cebc06c3e8..f2debbb145 100644 --- a/web/ASC.Web.Client/src/components/pages/Wizard/index.js +++ b/web/ASC.Web.Client/src/components/pages/Wizard/index.js @@ -376,7 +376,10 @@ class Body extends Component { if (e.key === "Enter") this.onContinueHandler(); } - isValidPassHandler = val => this.setState({ isValidPass: val }); + isValidPassHandler = val =>{ + console.log(val) + this.setState({ isValidPass: val }) + }; onChangePassword = e => this.setState({ password: e.target.value }); @@ -533,9 +536,12 @@ class Body extends Component { renderInputBox = () => { const { t, isOwner, settingsPassword } = this.props; const { isRequiredLicense } = this.state; + + console.log(settingsPassword) const inputEmail = !isOwner ? - : null; + : null; return ( {inputEmail}