We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61fd3f7 commit d479ec3Copy full SHA for d479ec3
src/Microsoft.OpenApi/Models/OpenApiOperation.cs
@@ -116,7 +116,7 @@ public OpenApiOperation() {}
116
/// </summary>
117
public OpenApiOperation(OpenApiOperation operation)
118
{
119
- Tags = operation.Tags != null ? new List<OpenApiTag>(operation?.Tags) : null;
+ Tags = operation?.Tags != null ? new List<OpenApiTag>(operation?.Tags) : null;
120
Summary = operation?.Summary ?? Summary;
121
Description = operation?.Description ?? Description;
122
ExternalDocs = operation?.ExternalDocs != null ? new(operation?.ExternalDocs) : null;
0 commit comments