Yuki Takei 5 年 前
コミット
aa19c172ca
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/client/js/components/PageList/Page.jsx

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

@@ -13,7 +13,7 @@ export default class Page extends React.Component {
     } = this.props;
 
     let pagePathElem = <PagePathLabel page={page} />;
-    if (!noLink != null) {
+    if (!noLink) {
       pagePathElem = <a className="text-break" href={page.path}>{pagePathElem}</a>;
     }