Skip to content
Merged
Show file tree
Hide file tree
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
TT-64 fix: set technologies as list when create time-entry
  • Loading branch information
Angeluz-07 committed Dec 18, 2020
commit 6752a75460cf8ced1837d844b489a9bca75cdfbc
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export class ProjectListHoverComponent implements OnInit, OnDestroy {
project_id: selectedProject,
start_date: new Date().toISOString(),
timezone_offset: new Date().getTimezoneOffset(),
technologies: []
};
this.store.dispatch(new entryActions.ClockIn(entry));
this.projectsForm.setValue( { project_id: `${customerName} - ${name}`, } );
Expand Down
1 change: 1 addition & 0 deletions src/app/modules/time-clock/store/entry.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export class EntryEffects {
project_id: action.idProjectSwitching,
start_date: stopDateForEntry.toISOString(),
timezone_offset: new Date().getTimezoneOffset(),
technologies: []
};
return new actions.ClockIn(entry);
}),
Expand Down