Compare commits

..

1 Commits

Author SHA1 Message Date
Yi Zhan
86b3a078ef fix: sign In button in the result page has broken (#646)
* fix: sign In button in the result page has broken

Signed-off-by: Steve0x2a <stevesough@gmail.com>

* fix: code format

Signed-off-by: Steve0x2a <stevesough@gmail.com>
2022-04-05 08:49:11 +08:00

View File

@@ -66,7 +66,7 @@ class ResultPage extends React.Component {
extra={[
<Button type="primary" key="login" onClick={() => {
let linkInStorage = sessionStorage.getItem("loginURL")
if (linkInStorage != "") {
if (linkInStorage !== null && linkInStorage !== "") {
Setting.goToLink(linkInStorage)
} else {
Setting.goToLogin(this, application)