Browse Source

BugFix: Page href

Yuki Takei 6 năm trước cách đây
mục cha
commit
75945b225f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/client/js/components/PageList/Page.jsx

+ 1 - 1
src/client/js/components/PageList/Page.jsx

@@ -14,7 +14,7 @@ export default class Page extends React.Component {
 
     let pagePath = <PagePath page={page} excludePathString={excludePathString} />;
     if (!noLink != null) {
-      pagePath = <a className="text-break" href={page.pagePath}>{pagePath}</a>;
+      pagePath = <a className="text-break" href={page.path}>{pagePath}</a>;
     }
 
     return (