Files
azuredatastudio/src/sql/base/common/codicons.ts
Hai Cao 3eef3f2a0b Fix missing add azure account button in accountDialog (#15852)
* fix missing add azure account button in accoundDialog

* add sql edit note

* fix other getActions overrides

* use registerAction2 for adding account button

* fix icon and cleanup

* fix big add account button

* lint
2021-06-24 17:21:11 -07:00

19 lines
793 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* Set of IDs used to identify SQL contributed icons, which override the default
* codicon behavior vs/base/common/codicons.ts
*/
export const enum SqlIconId {
book = 'book',
dataExplorer = 'dataExplorer',
addServerGroupAction = 'add-server-group-action',
addServerAction = 'add-server-action',
activeConnectionsAction = 'active-connections-action',
serverPage = 'server-page',
addAccountAction = 'add-linked-account-action'
}