Skip to content

Commit f10025d

Browse files
Copilotrenemadsen
andcommitted
Fix missing this. prefix for data in task-tracker-shown-columns constructor
Co-authored-by: renemadsen <[email protected]>
1 parent df6a7d9 commit f10025d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

eform-client/src/app/plugins/modules/backend-configuration-pn/modules/task-tracker/components/task-tracker-actions/task-tracker-shown-columns/task-tracker-shown-columns.component.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ export class TaskTrackerShownColumnsComponent implements OnInit, OnDestroy {
2727

2828
constructor() {
2929
this.columns = new FormGroup({
30-
property: new FormControl(data['property']),
31-
task: new FormControl(data['task']),
32-
tags: new FormControl(data['tags']),
33-
workers: new FormControl(data['workers']),
34-
start: new FormControl(data['start']),
35-
repeat: new FormControl(data['repeat']),
36-
deadline: new FormControl(data['deadline']),
37-
calendar: new FormControl(data['calendar']),
30+
property: new FormControl(this.data['property']),
31+
task: new FormControl(this.data['task']),
32+
tags: new FormControl(this.data['tags']),
33+
workers: new FormControl(this.data['workers']),
34+
start: new FormControl(this.data['start']),
35+
repeat: new FormControl(this.data['repeat']),
36+
deadline: new FormControl(this.data['deadline']),
37+
calendar: new FormControl(this.data['calendar']),
3838
});
3939
}
4040

0 commit comments

Comments
 (0)