resource label update (#13129)

* resource label update

* preserve existing behavior

* fix connection group color

* comments
This commit is contained in:
Alan Ren
2020-10-29 14:42:01 -07:00
committed by GitHub
parent 8c956cdb79
commit 7819d25c95
28 changed files with 138 additions and 72 deletions

View File

@@ -13,6 +13,7 @@ import { AppContext } from '../appContext';
import { AzureResourceServiceNames } from './constants';
import { IAzureResourceSubscriptionFilterService, IAzureResourceSubscriptionService } from './interfaces';
import { AzureResourceGroupService } from './providers/resourceGroup/resourceGroupService';
import * as vscode from 'vscode';
const localize = nls.loadMessageBundle();
@@ -284,3 +285,7 @@ export async function getSelectedSubscriptions(appContext: AppContext, account?:
}
return result;
}
export function isConnectionDialogBrowseViewEnabled(): boolean {
return vscode.workspace.getConfiguration('connection').get<boolean>('dialog.browse');
}