From 7fd21dfd41acf68c73481af2429f09490f5b325e Mon Sep 17 00:00:00 2001 From: yoonhona Date: Fri, 5 Jul 2019 14:53:15 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix=20footer=20z-index=20=EC=A1=B0=EC=A0=88?= =?UTF-8?q?=ED=95=98=EC=97=AC=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=ED=8F=BC=20?= =?UTF-8?q?=EC=83=81=EC=9C=84=EC=97=90=20=EC=98=AC=EB=9D=BC=EC=98=A4?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20=EC=88=98=E2=82=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/jss/material-kit-react/views/loginPage.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/assets/jss/material-kit-react/views/loginPage.jsx b/src/assets/jss/material-kit-react/views/loginPage.jsx index a60798f..826b8dd 100644 --- a/src/assets/jss/material-kit-react/views/loginPage.jsx +++ b/src/assets/jss/material-kit-react/views/loginPage.jsx @@ -40,7 +40,8 @@ const signupPageStyle = { "& footer": { position: "absolute", bottom: "0", - width: "100%" + width: "100%", + zIndex: 1 } }, form: { From 81abd809c63d5d6e3904d5c7bec1932b70904d9d Mon Sep 17 00:00:00 2001 From: yoonhona Date: Fri, 5 Jul 2019 14:54:03 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=EC=8A=A4=ED=8E=98=EC=9D=B4=EC=8A=A4=20?= =?UTF-8?q?=EC=9E=85=EB=A0=A5=20=EC=95=88=EB=90=98=EA=B2=8C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/LoginPage/LoginPage.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/LoginPage/LoginPage.jsx b/src/views/LoginPage/LoginPage.jsx index 6603d40..7d61ebc 100644 --- a/src/views/LoginPage/LoginPage.jsx +++ b/src/views/LoginPage/LoginPage.jsx @@ -34,7 +34,7 @@ class LoginPage extends React.Component { super(props); this.state = { cardAnimaton: "cardHidden", - id: "", + email: "", password: "" }; this.inputUserInfo = this.inputUserInfo.bind(this); @@ -54,7 +54,7 @@ class LoginPage extends React.Component { inputUserInfo(e) { this.setState({ ...this.state, - [e.currentTarget.id]: e.currentTarget.value + [e.currentTarget.id]: e.currentTarget.value.replace(/\s/g, "") }); } @@ -115,6 +115,7 @@ class LoginPage extends React.Component { fullWidth: true }} inputProps={{ + value: this.state.email, type: "text", required: true, endAdornment: ( @@ -132,6 +133,7 @@ class LoginPage extends React.Component { fullWidth: true }} inputProps={{ + value: this.state.password, type: "password", required: true, endAdornment: ( From 334262a23b0617a45a70ab9c213f01f1337ed6ea Mon Sep 17 00:00:00 2001 From: andy Date: Sat, 27 Jul 2019 13:00:55 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=EB=A6=B4=EB=A6=AC=EC=A6=88=200.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7e03d8..b294f87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chainity-ladning", - "version": "0.5.1", + "version": "0.8.0", "description": "Chainity welcome pages", "private": true, "main": "dist/index.js",