Skip to content

Commit

Permalink
fix: minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivelin committed Feb 29, 2020
1 parent 9d79e48 commit b356e22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/views/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
>
<v-list-item-content>
<v-list-item-title class="headline">
News from Your Home and Workspace
Cozier Home and Workspace
</v-list-item-title>
<v-list-item-subtitle>
via Ambient Intelligence
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
>
<v-list-item-content>
<v-list-item-title class="headline">
News from Your Home and Workspace
Cozier Home and Workspace
</v-list-item-title>
<v-list-item-subtitle>
via Ambient Intelligence
Expand Down
2 changes: 1 addition & 1 deletion src/views/Timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export default {
console.debug('event time before local timezone adjustment', { datetime })
// eslint-disable-next-line
console.debug('timezone offset', { tz })
const adjustedLocalTime = moment.utc(datetime).subtract(tz, 'minutes').calendar()
const adjustedLocalTime = moment.utc(datetime).local().calendar()
// eslint-disable-next-line
console.debug('local timezone adjusted time of event', { adjustedLocalTime })
return adjustedLocalTime
Expand Down

0 comments on commit b356e22

Please sign in to comment.