mirror of
https://github.com/docmost/docmost.git
synced 2026-07-25 08:54:48 +10:00
fix: bug fixes (#2201)
* fix(editor): hide transclusion borders and reset spacing in read-only mode * feat(share): add full width toggle for shared pages * feat(share): support resizing sidebar on shared pages * fix: auto redirect if there is only one SSO provider. - fix tighten sso redirect - fix share tree margin * sync * package overrides
This commit is contained in:
@@ -9,7 +9,10 @@ import { extractPageSlugId } from "@/lib";
|
||||
import { Error404 } from "@/components/ui/error-404.tsx";
|
||||
import ShareBranding from "@/features/share/components/share-branding.tsx";
|
||||
import { useAtomValue } from "jotai";
|
||||
import { sharedTreeDataAtom } from "@/features/share/atoms/shared-page-atom.ts";
|
||||
import {
|
||||
sharedPageFullWidthAtom,
|
||||
sharedTreeDataAtom,
|
||||
} from "@/features/share/atoms/shared-page-atom.ts";
|
||||
import { isPageInTree } from "@/features/share/utils.ts";
|
||||
|
||||
export default function SharedPage() {
|
||||
@@ -23,6 +26,7 @@ export default function SharedPage() {
|
||||
});
|
||||
|
||||
const sharedTreeData = useAtomValue(sharedTreeDataAtom);
|
||||
const fullWidth = useAtomValue(sharedPageFullWidthAtom);
|
||||
|
||||
useEffect(() => {
|
||||
if (shareId && data) {
|
||||
@@ -59,7 +63,7 @@ export default function SharedPage() {
|
||||
)}
|
||||
</Helmet>
|
||||
|
||||
<Container size={900} p={0}>
|
||||
<Container fluid={fullWidth} size={fullWidth ? undefined : 900} p={0}>
|
||||
<ReadonlyPageEditor
|
||||
key={data.page.id}
|
||||
title={data.page.title}
|
||||
|
||||
Reference in New Issue
Block a user