1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

[bug#169] first day of week is ignored in agendas

This commit is contained in:
Sylvain 2020-03-02 17:22:15 +01:00
parent b645e5efe5
commit d0be17073b
2 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@
- Fix a bug: in some cases, bogus admin notification on profile completed
- Fix a bug: with Firefox browser, the texts in date inputs are shifted to the bottom
- Fix a bug: sometimes when browsing the invoices section, the translations are missing
- Fix a bug: first day of week is ignored in agendas (#169)
- Fix a security issue: updated loofah to fix [CVE-2019-15587](https://nvd.nist.gov/vuln/detail/CVE-2019-15587)
- Fix a security issue: updated angular to 1.7.9 to fix [CVE-2019-10768](https://nvd.nist.gov/vuln/detail/CVE-2019-10768)
- Fix a security issue: updated puma to 3.12.3 to fix [GHSA-7xx3-m584-x994](https://github.com/advisories/GHSA-7xx3-m584-x994) and [CVE-2020-5247](https://nvd.nist.gov/vuln/detail/CVE-2020-5247)

View File

@ -17,7 +17,7 @@ Application.Services.factory('CalendarConfig', [() =>
center: 'title',
right: 'today prev,next'
},
firstDay: 1, // Week start on monday (France)
firstDay: Fablab.weekStartingDay,
scrollTime: DEFAULT_CALENDAR_POSITION,
slotDuration: BASE_SLOT,
allDayDefault: false,