@@ -216,7 +216,7 @@ export const SearchResultContent: FC<Props> = (props: Props) => {
<RightComponent />
<div className="container-lg grw-container-convertible pt-2 pb-2">
- <PagePathNav pageId={page._id} pagePath={page.path} formerLinkClassName="small" latterLinkClassName="fs-3 text-truncate" />
+ <PagePathNav pageId={page._id} pagePath={page.path} isWipPage={page.wip} formerLinkClassName="small" latterLinkClassName="fs-3 text-truncate" />
</div>
<div
@@ -101,7 +101,7 @@ export const PageView = (props: Props): JSX.Element => {
}
}, [isForbidden, isIdenticalPathPage, isNotCreatable]);
- const headerContents = <PagePathNavTitle pageId={page?._id} pagePath={pagePath} />;
+ const headerContents = <PagePathNavTitle pageId={page?._id} pagePath={pagePath} isWipPage={page?.wip} />;
const sideContents = !isNotFound && !isNotCreatable
? (
@@ -61,7 +61,7 @@ export const ShareLinkPageView = (props: Props): JSX.Element => {
}, [disableLinkSharing, props.disableLinkSharing]);
const sideContents = !isNotFound