提交 acdfe2bd 编写于 作者: I isidor

fix npe

上级 7f0e95dc
......@@ -115,7 +115,7 @@ export class SelectBoxNative implements ISelectBoxDelegate {
}
this.selectElement.selectedIndex = this.selected;
if (this.options.length && typeof this.options[this.selected].text === 'string') {
if ((this.selected < this.options.length) && typeof this.options[this.selected].text === 'string') {
this.selectElement.title = this.options[this.selected].text;
} else {
this.selectElement.title = '';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册