Fix error when clicking empty dropdown (#12684)

* vBump notebooks to get latest CU6 version of book

* Don't throw error when clicking on empty select box

* undo
This commit is contained in:
Charles Gagnon
2020-10-01 08:51:34 -07:00
committed by GitHub
parent 54b24d935c
commit 02afd2dc39

View File

@@ -715,8 +715,8 @@ export class SelectBoxList extends Disposable implements ISelectBoxDelegate, ILi
}
});
container.innerHTML = this.options[longest]?.text + (!!this.options[longest]?.decoratorRight ? (this.options[longest].decoratorRight + ' ') : ''); // {{ SQL CARBON EDIT }} Don't error if no option found (empty list)
container.innerHTML = this.options[longest].text + (!!this.options[longest].decoratorRight ? (this.options[longest].decoratorRight + ' ') : '');
elementWidth = dom.getTotalWidth(container);
}