Skip to content

Commit

Permalink
fix(designer): Remove encoding in parameter name (#6134)
Browse files Browse the repository at this point in the history
Remove encoding in parameter name
  • Loading branch information
ccastrotrejo authored Nov 18, 2024
1 parent a3f6e31 commit 7bc895f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export class ParametersProcessor {
const encode = parameter[Constants.ExtensionProperties.Encode];
const format = parameter.format;
const $in = parameter.in;
const name = encodePropertySegment(parameter.name);
const name = parameter.name;
const recommended = parameter[Constants.ExtensionProperties.SchedulerRecommendation];
const required = !!parameter.required;
const summary = parameter[Constants.ExtensionProperties.Summary];
Expand Down

0 comments on commit 7bc895f

Please sign in to comment.