diff --git a/CHANGELOG.md b/CHANGELOG.md index 195eed1f8..6ee57ee7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ All notable changes to the "azure-cosmosdb" extension will be documented in this file. -## 0.7.1 - 2018-05-09 -### Fixed -[Bug fixed](https://github.com/Microsoft/vscode-cosmosdb/issues/623) +## 0.7.1 - 2018-05-10 + +### [Fixed](https://github.com/Microsoft/vscode-cosmosdb/issues?q=is%3Aissue+milestone%3A%220.7.1%22+is%3Aclosed+label%3Abug) + +- Fixed error "Unexpected Experience Value" when retrieving database accounts ## 0.7.0 - 2018-05-04 diff --git a/src/tree/CosmosDBAccountProvider.ts b/src/tree/CosmosDBAccountProvider.ts index ab29e21c2..861f246f4 100644 --- a/src/tree/CosmosDBAccountProvider.ts +++ b/src/tree/CosmosDBAccountProvider.ts @@ -75,7 +75,7 @@ export class CosmosDBAccountProvider implements IChildProvider { const defaultExperience = (databaseAccount && databaseAccount.tags && databaseAccount.tags.defaultExperience); const resourceGroup: string = azureUtils.getResourceGroupFromId(databaseAccount.id); const accountKind = getExperience(defaultExperience).shortName; - const label: string = databaseAccount.name + (accountKind ? `(${accountKind})` : ``); + const label: string = databaseAccount.name + (accountKind ? ` (${accountKind})` : ``); const isEmulator: boolean = false; if (defaultExperience === "MongoDB") { const result = await client.databaseAccounts.listConnectionStrings(resourceGroup, databaseAccount.name);