fix(select-rich): wait until mixin overlay is ready before doing setup
This commit is contained in:
parent
78a8554019
commit
53a21f2baa
1 changed files with 5 additions and 1 deletions
|
|
@ -219,7 +219,11 @@ export class LionSelectRich extends ScopedElementsMixin(
|
|||
|
||||
firstUpdated(changedProperties) {
|
||||
super.firstUpdated(changedProperties);
|
||||
this.__setupOverlay();
|
||||
|
||||
this._overlaySetupComplete.then(() => {
|
||||
this.__setupOverlay();
|
||||
});
|
||||
|
||||
this.__setupInvokerNode();
|
||||
this.__setupListboxNode();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue