Frontmatter
| id | 7680 |
| title | Calendar regression: raw data access in store without creating the record |
| state | Closed |
| labels | bugairegression |
| assignees | tobiu |
| createdAt | Oct 31, 2025, 8:35 PM |
| updatedAt | Oct 31, 2025, 8:55 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7680 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 31, 2025, 8:55 PM |
The calendar example was throwing a
TypeError: date.getFullYear is not a function. This was caused byEvents.mjs#getDayRecords()accessingme.items[i]directly, which returns a raw data object instead of aRecordinstance. The fix is to useme.getAt(i)to ensure the lazy record creation is triggered.