From a7fa0276cde2fbd97371a90936290207efb69fae Mon Sep 17 00:00:00 2001 From: manueltauber Date: Wed, 28 Jun 2023 12:45:25 +0200 Subject: [PATCH] Dokumentation --- frontend/src/ntt-gantt/ntt-gantt.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/ntt-gantt/ntt-gantt.component.ts b/frontend/src/ntt-gantt/ntt-gantt.component.ts index 83deaa0..eae2a1a 100644 --- a/frontend/src/ntt-gantt/ntt-gantt.component.ts +++ b/frontend/src/ntt-gantt/ntt-gantt.component.ts @@ -108,10 +108,11 @@ export class NttGanttComponent implements OnInit { /** * The constructor injects required dependencies + * @param languageService injects the languageService for language management in the component * @param dataService injects the dataService for data management and backend communication * @param matDialog injects the matDialog */ - constructor(public languageService: LanguageService,public dataService: DataService, public matDialog : MatDialog, private _snackBar: MatSnackBar ) { + constructor(public languageService: LanguageService, public dataService: DataService, public matDialog : MatDialog, private _snackBar: MatSnackBar ) { this.initLanguge(true); }