File tree 1 file changed +0
-17
lines changed
client/packages/lowcoder/src/comps/queries
1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -664,23 +664,6 @@ export const QueryComp = withExposingConfigs(QueryCompTmp, [
664
664
new NameConfig ( "isFetching" , trans ( "query.isFetchingExportDesc" ) ) ,
665
665
new NameConfig ( "runTime" , trans ( "query.runTimeExportDesc" ) ) ,
666
666
new NameConfig ( "latestEndTime" , trans ( "query.latestEndTimeExportDesc" ) ) ,
667
- new DepsConfig (
668
- "variables" ,
669
- ( children : any ) => {
670
- return { data : children . variables . children . variables . node ( ) } ;
671
- } ,
672
- ( input ) => {
673
- if ( ! input . data ) {
674
- return undefined ;
675
- }
676
- const newNode = Object . values ( input . data )
677
- . filter ( ( kvNode : any ) => kvNode . key )
678
- . map ( ( kvNode : any ) => ( { [ kvNode . key ] : kvNode . value } ) )
679
- . reduce ( ( prev , obj ) => ( { ...prev , ...obj } ) , { } ) ;
680
- return newNode ;
681
- } ,
682
- trans ( "query.variables" )
683
- ) ,
684
667
new NameConfig ( "triggerType" , trans ( "query.triggerTypeExportDesc" ) ) ,
685
668
] ) ;
686
669
You can’t perform that action at this time.
0 commit comments