We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9063b commit 72760cfCopy full SHA for 72760cf
packages/input-datepicker/src/LionInputDatepicker.js
@@ -306,7 +306,10 @@ export class LionInputDatepicker extends LionInputDate {
306
307
async __openCalendarOverlay() {
308
this._overlayCtrl.show();
309
- await this._calendarElement.updateComplete;
+ await Promise.all([
310
+ this._calendarOverlayElement.updateComplete,
311
+ this._calendarElement.updateComplete,
312
+ ]);
313
this._onCalendarOverlayOpened();
314
}
315
0 commit comments