mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 17:23:10 -05:00
Add more folders to strict compile (#8954)
* add more folders to strictire compile, add more strict compile options * update ci * remove unnecessary assertion
This commit is contained in:
@@ -60,11 +60,11 @@ export class ListBox extends SelectBox {
|
||||
this.contextViewProvider = contextViewProvider;
|
||||
this.isValid = true;
|
||||
this.selectElement.multiple = true;
|
||||
this.selectElement.style['height'] = '80px';
|
||||
this.selectElement.style.height = '80px';
|
||||
|
||||
// Set width style for horizontal scrollbar
|
||||
this.selectElement.style['width'] = 'inherit';
|
||||
this.selectElement.style['min-width'] = '100%';
|
||||
this.selectElement.style.width = 'inherit';
|
||||
this.selectElement.style.minWidth = '100%';
|
||||
|
||||
this._register(dom.addStandardDisposableListener(this.selectElement, dom.EventType.KEY_DOWN, (e: StandardKeyboardEvent) => this._onKeyDown.fire(e)));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user