removed unneeded (and unwanted) '.' in calendar (#3003)

- removed unneeded (and unwanted) '.' after the year in calendar
repeatingCountTitle (fixes #2896)
- update Collaboration.md
This commit is contained in:
Karsten Hassel
2023-01-14 13:47:32 +01:00
committed by GitHub
parent 29e3ec06cb
commit d2327d3d6f
3 changed files with 7 additions and 1 deletions

View File

@@ -271,7 +271,7 @@ Module.register("calendar", {
const thisYear = new Date(parseInt(event.startDate)).getFullYear(),
yearDiff = thisYear - event.firstYear;
repeatingCountTitle = ", " + yearDiff + ". " + repeatingCountTitle;
repeatingCountTitle = ", " + yearDiff + repeatingCountTitle;
}
}