|
@@ -5,6 +5,8 @@ import urljoin from 'url-join';
|
|
|
|
|
|
|
|
import LinkedPagePath from '../models/linked-page-path';
|
|
import LinkedPagePath from '../models/linked-page-path';
|
|
|
|
|
|
|
|
|
|
+import { LinkEditorModeHashChange } from './Common/LinkEditorModeHashChange';
|
|
|
|
|
+
|
|
|
|
|
|
|
|
type PagePathHierarchicalLinkProps = {
|
|
type PagePathHierarchicalLinkProps = {
|
|
|
linkedPagePath: LinkedPagePath,
|
|
linkedPagePath: LinkedPagePath,
|
|
@@ -49,12 +51,12 @@ const PagePathHierarchicalLink = memo((props: PagePathHierarchicalLinkProps): JS
|
|
|
: (
|
|
: (
|
|
|
<RootElm>
|
|
<RootElm>
|
|
|
<span className="path-segment">
|
|
<span className="path-segment">
|
|
|
- <Link href="/" prefetch={false}>
|
|
|
|
|
|
|
+ <LinkEditorModeHashChange href="/" prefetch={false}>
|
|
|
<a >
|
|
<a >
|
|
|
<i className="icon-home"></i>
|
|
<i className="icon-home"></i>
|
|
|
<span className="separator">/</span>
|
|
<span className="separator">/</span>
|
|
|
</a>
|
|
</a>
|
|
|
- </Link>
|
|
|
|
|
|
|
+ </LinkEditorModeHashChange>
|
|
|
</span>
|
|
</span>
|
|
|
</RootElm>
|
|
</RootElm>
|
|
|
);
|
|
);
|