fix: 修复在使用App路由时, Tabs组件页面跳转其他路由出现白屏 #3636 (#3637)

Co-authored-by: allanyu <allanyu@tencent.com>
This commit is contained in:
luckyufei 2022-02-25 12:36:43 +08:00 committed by GitHub
parent 599c404f31
commit ce766f7221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -335,7 +335,7 @@ export default class Tabs extends React.Component<TabsProps, TabsState> {
localTabs = newLocalTabs;
}
if (props.location && props.location.hash !== preProps.location.hash) {
if (props.location && preProps.location && props.location.hash !== preProps.location.hash) {
const hash = props.location.hash.substring(1);
if (!hash) {
return;