mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Dropdown fix (#11660)
This commit is contained in:
@@ -108,11 +108,10 @@ export class AccountPicker extends Disposable {
|
|||||||
const azureTenantLabel = localize('azureTenant', "Azure tenant");
|
const azureTenantLabel = localize('azureTenant', "Azure tenant");
|
||||||
|
|
||||||
const accountLabel = this.createLabelElement(azureAccountLabel, true);
|
const accountLabel = this.createLabelElement(azureAccountLabel, true);
|
||||||
this._accountListContainer = DOM.append(accountLabel, DOM.$('div.account-list-container'));
|
this._accountListContainer = DOM.$('div.account-list-container');
|
||||||
|
|
||||||
const tenantLabel = this.createLabelElement(azureTenantLabel, true);
|
const tenantLabel = this.createLabelElement(azureTenantLabel, true);
|
||||||
this._tenantListContainer = DOM.append(tenantLabel, DOM.$('div.tenant-list-container'));
|
this._tenantListContainer = DOM.$('div.tenant-list-container');
|
||||||
|
|
||||||
|
|
||||||
this._accountList = new List<azdata.Account>('AccountPicker', this._accountListContainer, accountDelegate, [accountRenderer], {
|
this._accountList = new List<azdata.Account>('AccountPicker', this._accountListContainer, accountDelegate, [accountRenderer], {
|
||||||
setRowLineHeight: false,
|
setRowLineHeight: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user