File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export function replaceVariable(
8585 const escapedKey = key . replace ( / [ . * + ? ^ $ { } ( ) | [ \] \\ ] / g, '\\$&' ) ;
8686
8787 replacements . push ( {
88- pattern : `{{( ${ escapedKey } ) }}` ,
88+ pattern : `{{${ escapedKey } }}` ,
8989 replacement : formatVal
9090 } ) ;
9191
Original file line number Diff line number Diff line change @@ -247,9 +247,11 @@ export const datasetQuoteValueDesc = `{
247247 q: string;
248248 a: string
249249}[]` ;
250- export const datasetSelectValueDesc = `{
251- datasetId: string;
252- }[]` ;
250+ export const datasetSelectValueDesc = `[
251+ {
252+ "datasetId": "6693a4a6b69b7a9b0e37d9b0"
253+ }
254+ ]` ;
253255
254256export const AppNodeFlowNodeTypeMap : Record < any , boolean > = {
255257 [ FlowNodeTypeEnum . pluginModule ] : true ,
You can’t perform that action at this time.
0 commit comments