mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:25:15 +00:00
fix: cannot access 'ActionPage' before initialization (#5125)
This commit is contained in:
parent
7ff13ff39e
commit
ffcc60cadf
@ -15,10 +15,8 @@ import { BackButtonUsedInSubPage } from '../page/BackButtonUsedInSubPage';
|
|||||||
import { TabsContextProvider, useTabsContext } from '../tabs/context';
|
import { TabsContextProvider, useTabsContext } from '../tabs/context';
|
||||||
import { useActionPageStyle } from './Action.Page.style';
|
import { useActionPageStyle } from './Action.Page.style';
|
||||||
import { usePopupOrSubpagesContainerDOM } from './hooks/usePopupSlotDOM';
|
import { usePopupOrSubpagesContainerDOM } from './hooks/usePopupSlotDOM';
|
||||||
import { ComposedActionDrawer } from './types';
|
|
||||||
|
|
||||||
export const ActionPage: ComposedActionDrawer = observer(
|
export function ActionPage({ level }) {
|
||||||
({ level }) => {
|
|
||||||
const filedSchema = useFieldSchema();
|
const filedSchema = useFieldSchema();
|
||||||
const ctx = useActionContext();
|
const ctx = useActionContext();
|
||||||
const { getContainerDOM } = usePopupOrSubpagesContainerDOM();
|
const { getContainerDOM } = usePopupOrSubpagesContainerDOM();
|
||||||
@ -51,9 +49,7 @@ export const ActionPage: ComposedActionDrawer = observer(
|
|||||||
}
|
}
|
||||||
|
|
||||||
return actionPageNode;
|
return actionPageNode;
|
||||||
},
|
}
|
||||||
{ displayName: 'ActionPage' },
|
|
||||||
);
|
|
||||||
|
|
||||||
ActionPage.Footer = observer(
|
ActionPage.Footer = observer(
|
||||||
() => {
|
() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user