You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eform-client/src/app/plugins/modules/time-planning-pn/components/plannings/time-planning-actions/workday-entity/workday-entity-dialog.component.ts
+9-10Lines changed: 9 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -497,12 +497,12 @@ export class WorkdayEntityDialogComponent implements OnInit {
497
497
498
498
if(!start||!stop){
499
499
if(!start){
500
-
setError(startControl,'required','Start time is required');
500
+
setError(startControl,'required',this.translateService.instant('Start time is required'));
501
501
}else{
502
502
removeError(startControl,'required');
503
503
}
504
504
if(!stop){
505
-
setError(stopControl,'required','Stop time is required');
505
+
setError(stopControl,'required',this.translateService.instant('Stop time is required'));
506
506
}else{
507
507
removeError(stopControl,'required');
508
508
}
@@ -511,8 +511,8 @@ export class WorkdayEntityDialogComponent implements OnInit {
0 commit comments