mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
site: should remove locale info when switch to old site, close: #4224
This commit is contained in:
parent
7cf4192c4e
commit
f0d1b94163
@ -2,6 +2,7 @@ import React from 'react';
|
||||
import { FormattedMessage, injectIntl } from 'react-intl';
|
||||
import { Select, Modal } from 'antd';
|
||||
import { version as antdVersion } from 'antd/package.json';
|
||||
import * as utils from '../utils';
|
||||
import { docVersions } from '../../';
|
||||
|
||||
const Option = Select.Option;
|
||||
@ -63,7 +64,10 @@ class Footer extends React.Component {
|
||||
}
|
||||
|
||||
handleVersionChange = (url) => {
|
||||
window.location.href = window.location.href.replace(window.location.origin, url);
|
||||
const currentUrl = window.location.href;
|
||||
const currentPathname = window.location.pathname;
|
||||
window.location.href = currentUrl.replace(window.location.origin, url)
|
||||
.replace(currentPathname, utils.getLocalizedPathname(currentPathname));
|
||||
}
|
||||
|
||||
render() {
|
||||
|
Loading…
Reference in New Issue
Block a user