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.
repeatingCountTitle
yearDiff
1 parent ab5f79a commit 3b79791Copy full SHA for 3b79791
2 files changed
CHANGELOG.md
@@ -29,6 +29,7 @@ planned for 2026-01-01
29
- [tests] migrate from `jest` to `vitest` (#3940, #3941)
30
- [ci] Add concurrency to automated tests workflow to cancel outdated runs (#3943)
31
- [tests] replace `node-libgpiod` with `serialport` in electron-rebuild workflow (#3945)
32
+- [calendar] hide repeatingCountTitle if the event count is zero (#3949)
33
34
### Fixed
35
modules/default/calendar/calendar.js
@@ -330,7 +330,9 @@ Module.register("calendar", {
330
const thisYear = eventStartDateMoment.year(),
331
yearDiff = thisYear - event.firstYear;
332
333
- repeatingCountTitle = `, ${yearDiff} ${repeatingCountTitle}`;
+ if (yearDiff > 0) {
334
+ repeatingCountTitle = `, ${yearDiff} ${repeatingCountTitle}`;
335
+ }
336
}
337
338
0 commit comments