mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:06:31 +00:00
fix(plugin-mobile): the layout is incorrect (#2360)
This commit is contained in:
parent
b34b7319e9
commit
a2fe6ab18d
@ -15,7 +15,11 @@ const AppInner = memo(({ children }: { children: React.ReactNode }) => {
|
|||||||
|
|
||||||
const AntdAppProvider = ({ children }: { children: React.ReactNode }) => {
|
const AntdAppProvider = ({ children }: { children: React.ReactNode }) => {
|
||||||
return (
|
return (
|
||||||
<App>
|
<App
|
||||||
|
style={{
|
||||||
|
height: '100%',
|
||||||
|
}}
|
||||||
|
>
|
||||||
<AppInner>{children}</AppInner>
|
<AppInner>{children}</AppInner>
|
||||||
</App>
|
</App>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user