mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
Bug/keyboard issue in manange linked account (#1400)
* add message and add account button when the linked account is empty * fix account dialog tests * address comment
This commit is contained in:
@@ -67,6 +67,10 @@ export class FixedListView<T> extends CollapsibleView {
|
||||
this.setFixed(this.fixedSize);
|
||||
}
|
||||
|
||||
public get list(): List<T> {
|
||||
return this._list;
|
||||
}
|
||||
|
||||
public listContentHeight(): number {
|
||||
return this._list.contentHeight;
|
||||
}
|
||||
@@ -86,6 +90,9 @@ export class FixedListView<T> extends CollapsibleView {
|
||||
protected changeState(state: CollapsibleState): void {
|
||||
super.changeState(state);
|
||||
this.setFixed(this.fixedSize);
|
||||
if (this.list) {
|
||||
this.list.getHTMLElement().hidden = (state === CollapsibleState.COLLAPSED);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user