fix(select-rich): set activeIndex also when checkedIndex = 0
This commit is contained in:
parent
73e3937e1f
commit
03c58fdafd
1 changed files with 1 additions and 1 deletions
|
|
@ -622,7 +622,7 @@ export class LionSelectRich extends OverlayMixin(
|
|||
|
||||
__setupOverlay() {
|
||||
this.__overlayOnShow = () => {
|
||||
if (this.checkedIndex) {
|
||||
if (this.checkedIndex != null) {
|
||||
this.activeIndex = this.checkedIndex;
|
||||
}
|
||||
this._listboxNode.focus();
|
||||
|
|
|
|||
Loading…
Reference in a new issue