You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/08/25 06:57:04 UTC

[apisix-dashboard] branch master updated: fix(authentication): change Apache APISIX copyright (#401)

This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new 386c640  fix(authentication): change Apache APISIX copyright (#401)
386c640 is described below

commit 386c64050903293c0dd8f13739e07fed47514bcb
Author: bzp2010 <bz...@gmail.com>
AuthorDate: Tue Aug 25 14:56:54 2020 +0800

    fix(authentication): change Apache APISIX copyright (#401)
---
 src/pages/User/Login.less | 1 -
 src/pages/User/Login.tsx  | 6 +++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/pages/User/Login.less b/src/pages/User/Login.less
index 8635c96..c48cda3 100644
--- a/src/pages/User/Login.less
+++ b/src/pages/User/Login.less
@@ -19,7 +19,6 @@
 .container {
   display: flex;
   flex-direction: column;
-  height: 100vh;
   overflow: auto;
   background: @layout-body-background;
 }
diff --git a/src/pages/User/Login.tsx b/src/pages/User/Login.tsx
index 56542d5..0937834 100644
--- a/src/pages/User/Login.tsx
+++ b/src/pages/User/Login.tsx
@@ -16,7 +16,6 @@
  */
 import React, { useState } from 'react';
 import { Button, notification, Tabs } from 'antd';
-import { DefaultFooter } from '@ant-design/pro-layout';
 import { SelectLang } from '@@/plugin-locale/SelectLang';
 import { Link, useIntl, history } from 'umi';
 import LoginMethodPassword from '@/pages/User/components/LoginMethodPassword';
@@ -24,8 +23,9 @@ import LoginMethodExample from '@/pages/User/components/LoginMethodExample';
 import { UserModule } from '@/pages/User/typing';
 import logo from '@/assets/logo.svg';
 import { SettingOutlined } from '@ant-design/icons';
-import styles from './Login.less';
 import { getUrlQuery } from '@/helpers';
+import Footer from '@/components/Footer';
+import styles from './Login.less';
 
 const Tab = Tabs.TabPane;
 
@@ -115,7 +115,7 @@ const Page: React.FC = () => {
           </Button>
         </div>
       </div>
-      <DefaultFooter />
+      <Footer />
     </div>
   );
 };