mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
removed unneeded (and unwanted) '.' (#3084)
after the year in calendar repeatingCountTitle (#2896, second attempt ...)
This commit is contained in:
parent
9703226c73
commit
b7eb21e48f
@ -13,6 +13,8 @@ _This release is scheduled to be released on 2023-07-01._
|
|||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
- Removed unneeded (and unwanted) '.' after the year in calendar repeatingCountTitle (#2896, second attempt ...)
|
||||||
|
|
||||||
### Updated
|
### Updated
|
||||||
|
|
||||||
- Update electron to v24
|
- Update electron to v24
|
||||||
|
@ -313,7 +313,7 @@ Module.register("calendar", {
|
|||||||
const thisYear = new Date(parseInt(event.startDate)).getFullYear(),
|
const thisYear = new Date(parseInt(event.startDate)).getFullYear(),
|
||||||
yearDiff = thisYear - event.firstYear;
|
yearDiff = thisYear - event.firstYear;
|
||||||
|
|
||||||
repeatingCountTitle = `, ${yearDiff}. ${repeatingCountTitle}`;
|
repeatingCountTitle = `, ${yearDiff} ${repeatingCountTitle}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user