Skip to content

Commit b4ac319

Browse files
committed
Added bug fix: Service update no longer blocks input fields for ServiceName and Endpoint (if you added several endpoints and want to update one of them).
1 parent dd3834a commit b4ac319

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
These are the changes to each version that has been released on the official [Visual Studio extension gallery](https://marketplace.visualstudio.com/items?itemName=unchase.UnchaseOpenAPIConnectedService).
99

10+
## v1.1.13 `(2019-04-16)`
11+
12+
- [x] Added bug fix: Service update no longer blocks input fields for `ServiceName` and `Endpoint` (if you added several endpoints and want to update one of them).
13+
1014
## v1.1.12 `(2019-04-16)`
1115

1216
- [x] Added fix: Updating the service blocks the input field for the `ServiceName`.

src/Wizard.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ public Wizard(ConnectedServiceProviderContext context)
6060
"An OpenAPI (Swagger) specification endpoint and generation options was regenerated";
6161
if (ConfigOpenApiEndpointViewModel.View is ConfigOpenApiEndpoint сonfigOpenApiEndpoint)
6262
{
63-
сonfigOpenApiEndpoint.Endpoint.IsEnabled = false;
64-
сonfigOpenApiEndpoint.ServiceName.IsEnabled = false;
63+
//сonfigOpenApiEndpoint.Endpoint.IsEnabled = false;
64+
//сonfigOpenApiEndpoint.ServiceName.IsEnabled = false;
6565
}
6666

6767
CSharpClientSettingsViewModel.Command = serviceConfig.SwaggerToCSharpClientCommand;

0 commit comments

Comments
 (0)