From 0455293c0bf6e83800b9db23cf334d2d5e75c517 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Wed, 22 Aug 2018 19:31:44 +0200 Subject: [PATCH] Also add AutoHeightContainer to the password forms --- src/core/client/auth/components/ForgotPassword.tsx | 3 +++ src/core/client/auth/components/ResetPassword.tsx | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/core/client/auth/components/ForgotPassword.tsx b/src/core/client/auth/components/ForgotPassword.tsx index eb198aa0e..68707eea2 100644 --- a/src/core/client/auth/components/ForgotPassword.tsx +++ b/src/core/client/auth/components/ForgotPassword.tsx @@ -19,6 +19,8 @@ import { ValidationMessage, } from "talk-ui/components"; +import AutoHeightContainer from "../containers/AutoHeightContainer"; + interface FormProps { email: string; } @@ -32,6 +34,7 @@ const ForgotPassword: StatelessComponent = props => {
{({ handleSubmit }) => ( + Forgot Password diff --git a/src/core/client/auth/components/ResetPassword.tsx b/src/core/client/auth/components/ResetPassword.tsx index e58553e85..b459bf460 100644 --- a/src/core/client/auth/components/ResetPassword.tsx +++ b/src/core/client/auth/components/ResetPassword.tsx @@ -21,6 +21,8 @@ import { ValidationMessage, } from "talk-ui/components"; +import AutoHeightContainer from "../containers/AutoHeightContainer"; + interface FormProps { password: string; confirmPassword: string; @@ -35,6 +37,7 @@ const ResetPassword: StatelessComponent = props => { {({ handleSubmit }) => ( + Reset Password