Skip to content

Commit

Permalink
fix(designer): Fixing Customcode tokenpicker action value (#4767)
Browse files Browse the repository at this point in the history
update tokenpicker value for c sharp
  • Loading branch information
Eric-B-Wu committed May 3, 2024
1 parent eade1a6 commit c34f1eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/code/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function formatForPowershell(property: string, actionName?: string, source?: str

function formatForCSharp(property: string, actionName?: string, source?: string): string {
const result = actionName
? `(await context.GetActionResult("${actionName}").ConfigureAwait(false))${source ? `.${source}` : ''}${property}`
? `(await context.GetActionResults("${actionName}").ConfigureAwait(false))${source ? `.${source}` : ''}${property}`
: `(await context.GetTriggerResults().ConfigureAwait(false))${source ? `.${source}` : ''}${property}`;
return result;
}
Expand Down

0 comments on commit c34f1eb

Please sign in to comment.