Skip to content

Commit

Permalink
Merge pull request #34 from gapitio/on_call
Browse files Browse the repository at this point in the history
fix: send utc time to backend when adding new on call
  • Loading branch information
sbgap authored Nov 27, 2024
2 parents cc703b0 + 24ab8a4 commit 8832de7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/OnCallList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,9 @@ export default {
this.$store.dispatch(
'onCalls/createOnCall',
Object.assign(this.editedItem, {
id: null
id: null,
startTime: this.fix_time(this.editedItem.startTime, true),
endTime: this.fix_time(this.editedItem.endTime, true),
})
)
}
Expand Down

0 comments on commit 8832de7

Please sign in to comment.