Skip to content

Commit 5e47730

Browse files
committed
Calendar regression: raw data access in store without creating the record #7680
1 parent ab107cd commit 5e47730

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/calendar/store/Events.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Events extends Store {
4444
record;
4545

4646
for (; i < len; i++) {
47-
record = me.items[i];
47+
record = me.getAt(i);
4848

4949
if (DateUtil.matchDate(date, record.startDate)) {
5050
if (DateUtil.matchDate(date, record.endDate)) {

0 commit comments

Comments
 (0)