File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
client/packages/lowcoder/src/comps Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ const getStyle = (
7272 headerStyle : ContainerHeaderStyleType ,
7373 bodyStyle : ContainerBodyStyleType ,
7474) => {
75- console . log ( "🚀 ~ style:" , style )
7675 return css `
7776 & .ant-tabs {
7877 overflow : hidden;
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ function stateControlMethodExposing<T extends ExposeMethodCompConstructor<Abstra
210210 return withMethodExposingBase ( VariantComp , [
211211 {
212212 method : {
213- name : trans ( "eventHandler. set") + _ . upperFirst ( param . name ) ,
213+ name : " set" + _ . upperFirst ( param . name ) ,
214214 description : trans ( "exportMethod.setDesc" , { property : param . name } ) ,
215215 params : [ param ] ,
216216 } ,
@@ -222,7 +222,7 @@ function stateControlMethodExposing<T extends ExposeMethodCompConstructor<Abstra
222222 } ,
223223 {
224224 method : {
225- name : trans ( "eventHandler. clear") + _ . upperFirst ( param . name ) ,
225+ name : " clear" + _ . upperFirst ( param . name ) ,
226226 description : trans ( "exportMethod.clearDesc" , { property : param . name } ) ,
227227 params : [ ] ,
228228 } ,
@@ -233,7 +233,7 @@ function stateControlMethodExposing<T extends ExposeMethodCompConstructor<Abstra
233233 } ,
234234 {
235235 method : {
236- name : trans ( "eventHandler. reset") + _ . upperFirst ( param . name ) ,
236+ name : " reset" + _ . upperFirst ( param . name ) ,
237237 description : trans ( "exportMethod.resetDesc" , { property : param . name } ) ,
238238 params : [ ] ,
239239 } ,
You can’t perform that action at this time.
0 commit comments