Browse Source

fix: title={false} should work in login page

pull/11364/head
afc163 1 year ago
parent
commit
9247ccf256
  1. 2
      src/pages/User/Login/index.tsx

2
src/pages/User/Login/index.tsx

@ -151,7 +151,7 @@ const Login: React.FC = () => {
id: 'menu.login',
defaultMessage: '登录页',
})}
- {Settings.title}
{Settings.title && ` - ${Settings.title}`}
</title>
</Helmet>
<Lang />

Loading…
Cancel
Save