File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
client/packages/lowcoder/src/comps/comps Expand file tree Collapse file tree 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";
3535import React from "react" ;
3636import { isEqual } from "lodash" ;
3737import { LoadingBarHideTrigger } from "@lowcoder-ee/util/hideLoading" ;
38+ import clsx from "clsx" ;
3839const EditorView = lazy (
3940 ( ) => import ( "pages/editor/editorView" ) ,
4041) ;
@@ -130,7 +131,11 @@ const RootView = React.memo((props: RootViewProps) => {
130131 }
131132
132133 return (
133- < div { ...divProps } style = { { height : '100%' } } >
134+ < div { ...divProps }
135+ className = { clsx (
136+ divProps . id ,
137+ ) }
138+ style = { { height : '100%' } } >
134139 < PropertySectionContext . Provider value = { propertySectionContextValue } >
135140 < ThemeContext . Provider value = { themeContextValue } >
136141 < EditorContext . Provider value = { editorState } >
You can’t perform that action at this time.
0 commit comments