Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix time out for entry
  • Loading branch information
enriquezrene committed Dec 9, 2020
commit b9406686413690c049b80964d347dfc2da290471
2 changes: 1 addition & 1 deletion AutomaticClockOuts/time_entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class TimeEntry {
}

getTimeToClockOut() {
return moment().utc().subtract(this.timeEntry.timezone_offset, 'minutes').toISOString()
return moment().subtract(this.timeEntry.timezone_offset, 'minutes').toISOString()
}

needsToBeClockedOut() {
Expand Down