Skip to content

Commit

Permalink
fix: virtual scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
pomahtri committed Jul 15, 2024
1 parent 605c5a5 commit a0ac77e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class VerticalRenderingStrategy extends BaseAppointmentsStrategy {
vMin,
} = appointmentSettings;

const maxHeight = vMax - vMin;
const maxHeight = this.isVirtualScrolling ? vMax : vMax - vMin;

const hasTailPart = this.options.endViewDate > appointmentSettings.info.appointment.endDate;
let left = Math.round(appointmentSettings.left + offset);
Expand Down

0 comments on commit a0ac77e

Please sign in to comment.