[WEB-986] fix: editor slash command positioning (#4186)
* fix: table selected cell border * chore: add syncing message when revalidating page data * fix: slash command positioning * fix: mentions list dropdown positioning
This commit is contained in:
parent
7a21855ab6
commit
8454e4f1e0
8 changed files with 36 additions and 35 deletions
|
|
@ -46,7 +46,7 @@ const PageDetailsPage: NextPageWithLayout = observer(() => {
|
|||
});
|
||||
|
||||
// fetching page details
|
||||
const { data: swrPageDetails } = useSWR(
|
||||
const { data: swrPageDetails, isValidating } = useSWR(
|
||||
pageId ? `PAGE_DETAILS_${pageId}` : null,
|
||||
pageId ? () => getPageById(pageId.toString()) : null,
|
||||
{
|
||||
|
|
@ -120,6 +120,7 @@ const PageDetailsPage: NextPageWithLayout = observer(() => {
|
|||
editorReady={editorReady}
|
||||
readOnlyEditorReady={readOnlyEditorReady}
|
||||
handleDuplicatePage={handleDuplicatePage}
|
||||
isSyncing={isValidating}
|
||||
markings={markings}
|
||||
pageStore={pageStore}
|
||||
projectId={projectId.toString()}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue