File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed
client/packages/lowcoder/src/comps/comps Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,7 @@ const TemporaryStateItemCompBase = new MultiCompBuilder(
24
24
( ) => null
25
25
)
26
26
. setPropertyViewFn ( ( children ) => {
27
- const PropertyViewWithModal = ( ) => {
28
- const [ isOpen , setIsOpen ] = useState ( false ) ;
29
-
30
- const handleOpen = ( ) => {
31
- setIsOpen ( true ) ;
32
- } ;
33
-
34
- const handleClose = ( ) => {
35
- setIsOpen ( false ) ;
36
- } ;
37
-
38
- return (
27
+ return (
39
28
< BottomTabs
40
29
type = { BottomResTypeEnum . TempState }
41
30
tabsConfig = { [
@@ -56,7 +45,6 @@ const TemporaryStateItemCompBase = new MultiCompBuilder(
56
45
modalWidth = "80%"
57
46
modalTop = "20px"
58
47
/>
59
-
60
48
</ >
61
49
) ,
62
50
} ) ,
@@ -66,9 +54,6 @@ const TemporaryStateItemCompBase = new MultiCompBuilder(
66
54
status = ""
67
55
/>
68
56
) ;
69
- } ;
70
-
71
- return < PropertyViewWithModal /> ;
72
57
} )
73
58
. build ( ) ;
74
59
You can’t perform that action at this time.
0 commit comments