Skip to content

Commit d4ca296

Browse files
committed
fix: escape operationIds before outputting them
1 parent 783e68c commit d4ca296

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/TypeScriptFetchClientCodegen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,13 +597,13 @@ public OperationsMap postProcessOperationsWithModels(OperationsMap operations, L
597597
}
598598

599599
this.addOperationModelImportInformation(operations);
600+
this.escapeOperationIds(operations);
600601
this.updateOperationParameterForEnum(operations);
601602
if (this.getSagasAndRecords()) {
602603
this.updateOperationParameterForSagaAndRecords(operations);
603604
}
604605
this.addOperationObjectResponseInformation(operations);
605606
this.addOperationPrefixParameterInterfacesInformation(operations);
606-
this.escapeOperationIds(operations);
607607
return operations;
608608
}
609609

0 commit comments

Comments
 (0)