File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
client/packages/lowcoder/src/comps/comps/selectInputComp Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { styleControl } from "comps/controls/styleControl" ;
2
- import { LabelStyle , MultiSelectStyle } from "comps/controls/styleControlConstants" ;
2
+ import { ComponentStyle , LabelStyle , MultiSelectStyle } from "comps/controls/styleControlConstants" ;
3
3
import { trans } from "i18n" ;
4
4
import { arrayStringExposingStateControl } from "../../controls/codeStateControl" ;
5
5
import { UICompBuilder } from "../../generators" ;
@@ -24,6 +24,7 @@ let MultiSelectBasicComp = (function () {
24
24
value : arrayStringExposingStateControl ( "value" ) ,
25
25
style : styleControl ( MultiSelectStyle ) ,
26
26
labelStyle :styleControl ( LabelStyle ) ,
27
+ field :styleControl ( ComponentStyle ) ,
27
28
margin : MarginControl ,
28
29
padding : PaddingControl ,
29
30
} ;
@@ -37,7 +38,8 @@ let MultiSelectBasicComp = (function () {
37
38
return props . label ( {
38
39
required : props . required ,
39
40
style : props . style ,
40
- labelStyle :props . labelStyle ,
41
+ labelStyle : props . labelStyle ,
42
+ field :props . field ,
41
43
children : (
42
44
< SelectUIView
43
45
{ ...props }
You can’t perform that action at this time.
0 commit comments