Skip to content

Commit

Permalink
🐛 correctly display the full time range in the track > week view
Browse files Browse the repository at this point in the history
⬆️ updated package dependencies
  • Loading branch information
faburem committed Feb 21, 2024
1 parent 138bfb9 commit d44c4ea
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ templating-tools@1.2.3
tracker@1.3.3
tunguska:reactive-aggregate@1.3.13
typescript@4.9.5
underscore@1.6.0
underscore@1.6.1
url@1.3.2
webapp@1.13.8
webapp-hashing@1.1.1
4 changes: 2 additions & 2 deletions imports/ui/pages/track/components/weektable.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Template.weektable.onCreated(function weekTableCreated() {
this.endDate = new ReactiveVar()
this.autorun(() => {
if (this.subscriptionsReady()) {
this.startDate.set(dayjs().isoWeekday(getUserSetting('startOfWeek')))
this.endDate.set(dayjs().isoWeekday(getUserSetting('startOfWeek')).add(6, 'day'))
this.startDate.set(dayjs().startOf('day').isoWeekday(getUserSetting('startOfWeek')))
this.endDate.set(dayjs().endOf('day').isoWeekday(getUserSetting('startOfWeek')).add(6, 'day'))
}
})
this.autorun(() => {
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "titra",
"version": "0.96.6",
"version": "0.96.7",
"private": true,
"scripts": {
"start": "meteor run"
Expand All @@ -9,14 +9,14 @@
"@babel/runtime": "^7.23.9",
"@dashboardcode/bsmultiselect": "^1.1.18",
"@fortawesome/fontawesome-free": "^6.5.1",
"@fullcalendar/core": "6.1.10",
"@fullcalendar/daygrid": "6.1.10",
"@fullcalendar/interaction": "6.1.10",
"@fullcalendar/core": "6.1.11",
"@fullcalendar/daygrid": "6.1.11",
"@fullcalendar/interaction": "6.1.11",
"@neovici/nullxlsx": "^3.1.0",
"@popperjs/core": "^2.11.8",
"adm-zip": "^0.5.10",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.2",
"bootstrap": "^5.3.3",
"cl-editor": "^2.3.0",
"content-type": "^1.0.5",
"date-holidays": "^3.23.8",
Expand Down

0 comments on commit d44c4ea

Please sign in to comment.