Merge pull request #529 from ing-bank/fix/activeIndex-select-rich
fix(select-rich): set activeIndex also when checkedIndex = 0
This commit is contained in:
commit
edcf555adc
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