Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/date-picker/src/vaadin-infinite-scroller.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export class InfiniteScroller extends HTMLElement {

/** @private */
_createPool() {
const container = this.getBoundingClientRect();
const viewportHeight = this.innerHeight;
this._buffers.forEach((buffer) => {
for (let i = 0; i < this.bufferSize; i++) {
const itemWrapper = document.createElement('div');
Expand All @@ -326,7 +326,7 @@ export class InfiniteScroller extends HTMLElement {
this.appendChild(itemWrapper);

// Only stamp the visible instances first
if (this._isVisible(itemWrapper, container)) {
if (this.itemHeight * i <= viewportHeight) {
this._ensureStampedInstance(itemWrapper);
}
}
Expand Down
Copy link
Contributor Author

@vursen vursen Oct 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new screenshots show the correct behavior. In the previous version, the dropdown initially opened with slightly misaligned months, which then realigned after reopening.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.