Skip to content

Commit

Permalink
Fix spacing of api label (#626)
Browse files Browse the repository at this point in the history
Since I was already making this fix, I went ahead and cleaned up the changelog a little bit, too.
  • Loading branch information
ejizba authored May 10, 2018
1 parent e98ed56 commit f9f6f40
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/tree/CosmosDBAccountProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class CosmosDBAccountProvider implements IChildProvider {
const defaultExperience = <API>(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);
Expand Down

0 comments on commit f9f6f40

Please sign in to comment.