File tree 2 files changed +3
-4
lines changed
client/packages/lowcoder/src/comps
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ const getStyle = (
72
72
headerStyle : ContainerHeaderStyleType ,
73
73
bodyStyle : ContainerBodyStyleType ,
74
74
) => {
75
- console . log ( "🚀 ~ style:" , style )
76
75
return css `
77
76
& .ant-tabs {
78
77
overflow : hidden;
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ function stateControlMethodExposing<T extends ExposeMethodCompConstructor<Abstra
210
210
return withMethodExposingBase ( VariantComp , [
211
211
{
212
212
method : {
213
- name : trans ( "eventHandler. set") + _ . upperFirst ( param . name ) ,
213
+ name : " set" + _ . upperFirst ( param . name ) ,
214
214
description : trans ( "exportMethod.setDesc" , { property : param . name } ) ,
215
215
params : [ param ] ,
216
216
} ,
@@ -222,7 +222,7 @@ function stateControlMethodExposing<T extends ExposeMethodCompConstructor<Abstra
222
222
} ,
223
223
{
224
224
method : {
225
- name : trans ( "eventHandler. clear") + _ . upperFirst ( param . name ) ,
225
+ name : " clear" + _ . upperFirst ( param . name ) ,
226
226
description : trans ( "exportMethod.clearDesc" , { property : param . name } ) ,
227
227
params : [ ] ,
228
228
} ,
@@ -233,7 +233,7 @@ function stateControlMethodExposing<T extends ExposeMethodCompConstructor<Abstra
233
233
} ,
234
234
{
235
235
method : {
236
- name : trans ( "eventHandler. reset") + _ . upperFirst ( param . name ) ,
236
+ name : " reset" + _ . upperFirst ( param . name ) ,
237
237
description : trans ( "exportMethod.resetDesc" , { property : param . name } ) ,
238
238
params : [ ] ,
239
239
} ,
You can’t perform that action at this time.
0 commit comments