|
@@ -36,7 +36,7 @@ export default class RevisionPath extends React.Component {
|
|
|
let parentPath = '/';
|
|
let parentPath = '/';
|
|
|
splitted.forEach((pageName) => {
|
|
splitted.forEach((pageName) => {
|
|
|
pages.push({
|
|
pages.push({
|
|
|
- pagePath: parentPath + pageName,
|
|
|
|
|
|
|
+ pagePath: parentPath + encodeURIComponent(pageName),
|
|
|
pageName: pageName,
|
|
pageName: pageName,
|
|
|
});
|
|
});
|
|
|
parentPath += pageName + '/';
|
|
parentPath += pageName + '/';
|