mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user