File tree 1 file changed +6
-1
lines changed
client/packages/lowcoder/src/comps/comps
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ import { useUserViewMode } from "util/hooks";
35
35
import React from "react" ;
36
36
import { isEqual } from "lodash" ;
37
37
import { LoadingBarHideTrigger } from "@lowcoder-ee/util/hideLoading" ;
38
+ import clsx from "clsx" ;
38
39
const EditorView = lazy (
39
40
( ) => import ( "pages/editor/editorView" ) ,
40
41
) ;
@@ -130,7 +131,11 @@ const RootView = React.memo((props: RootViewProps) => {
130
131
}
131
132
132
133
return (
133
- < div { ...divProps } style = { { height : '100%' } } >
134
+ < div { ...divProps }
135
+ className = { clsx (
136
+ divProps . id ,
137
+ ) }
138
+ style = { { height : '100%' } } >
134
139
< PropertySectionContext . Provider value = { propertySectionContextValue } >
135
140
< ThemeContext . Provider value = { themeContextValue } >
136
141
< EditorContext . Provider value = { editorState } >
You can’t perform that action at this time.
0 commit comments