Skip to content

Commit 15b8c7d

Browse files
authored
Merge pull request #2660 from Azure/hotfix/remove-test-code
Hotfix release 2.16.1
2 parents 1d7ac1a + 9d407aa commit 15b8c7d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.16.1
2+
3+
* Test data caused storage account to show as "classic" [\#2659](https://github.com/Azure/BatchExplorer/issues/2659)
4+
15
# 2.16.0
26

37
[All items](https://github.com/Azure/BatchExplorer/milestone/50?closed=1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"name": "Microsoft Corporation",
1717
"email": "[email protected]"
1818
},
19-
"version": "2.16.0",
19+
"version": "2.16.1",
2020
"main": "build/client/main.prod.js",
2121
"scripts": {
2222
"ts": "ts-node --project tsconfig.node.json --files",

src/app/components/account/base/auto-storage-account-picker/auto-storage-account-picker.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ export class AutoStorageAccountPickerComponent implements OnInit, ControlValueAc
8686
private _processStorageAccounts(storageAccounts: List<StorageAccount>) {
8787
const prefered = [];
8888
const others = [];
89-
storageAccounts.forEach((account, i) => {
90-
account.isClassic = i % 2 === 0;
89+
storageAccounts.forEach((account) => {
9190
if (account.location.toLowerCase() === this.account.location.toLowerCase()) {
9291
prefered.push(account);
9392
} else {

0 commit comments

Comments
 (0)