We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b8de85 commit f422417Copy full SHA for f422417
src/app/modules/time-entries/pages/time-entries.component.ts
@@ -57,6 +57,8 @@ export class TimeEntriesComponent implements OnInit {
57
}
58
59
doSave(entry) {
60
+ entry.start_date = new Date(entry.start_date).toISOString();
61
+ entry.end_date = new Date(entry.end_date).toISOString();
62
if (this.entryId) {
63
entry.id = this.entryId;
64
this.store.dispatch(new entryActions.UpdateEntry(entry));
0 commit comments