Skip to content

Commit 2e23d02

Browse files
authored
TT-64 fix: set technologies as list when create time-entry (ioet#592)
1 parent cdb0365 commit 2e23d02

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/app/modules/time-clock/components/project-list-hover/project-list-hover.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export class ProjectListHoverComponent implements OnInit, OnDestroy {
8888
project_id: selectedProject,
8989
start_date: new Date().toISOString(),
9090
timezone_offset: new Date().getTimezoneOffset(),
91+
technologies: []
9192
};
9293
this.store.dispatch(new entryActions.ClockIn(entry));
9394
this.projectsForm.setValue( { project_id: `${customerName} - ${name}`, } );

src/app/modules/time-clock/store/entry.effects.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export class EntryEffects {
2626
project_id: action.idProjectSwitching,
2727
start_date: stopDateForEntry.toISOString(),
2828
timezone_offset: new Date().getTimezoneOffset(),
29+
technologies: []
2930
};
3031
return new actions.ClockIn(entry);
3132
}),

0 commit comments

Comments
 (0)