mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
Strict null pass on some base ui files (#4832)
* more strict null checks in base browser code * revert changes to radiobutton * fix some more minor things, enable strict null check in pipelines * formatting * fix compile errors * make null undefined * more null to undefined
This commit is contained in:
@@ -98,7 +98,7 @@ export class DropdownList extends Dropdown {
|
||||
* Render the selected label of the dropdown
|
||||
*/
|
||||
public renderLabel(): void {
|
||||
if (this._options.labelRenderer) {
|
||||
if (this._options.labelRenderer && this.label) {
|
||||
this._options.labelRenderer(this.label);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user