Skip to content

Commit

Permalink
Merge branch 'feat/cb2-14457' into feature/VTMDEV-2
Browse files Browse the repository at this point in the history
  • Loading branch information
pbardy2000 committed Nov 19, 2024
2 parents e365baa + 01709fd commit 527b8f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,11 @@ export class AdrSectionEditComponent implements OnInit, OnDestroy {
// Miscellaneous
techRecord_adrDetails_newCertificateRequested: this.fb.control<boolean>(false),
techRecord_adrDetails_additionalExaminerNotes_note: this.fb.control<string | null>(null, [
this.commonValidators.maxLength(1024, 'Additional Examiner Notes must be less han or equal to 1024 characters'),
this.commonValidators.maxLength(1024, 'Additional Examiner Notes must be less than or equal to 1024 characters'),
]),
techRecord_adrDetails_additionalExaminerNotes: this.fb.control<AdditionalExaminerNotes[] | null>(null),
techRecord_adrDetails_adrCertificateNotes: this.fb.control<string | null>(null, [
this.commonValidators.maxLength(1500, 'ADR Certificate Notes must be less han or equal to 1500 characters'),
this.commonValidators.maxLength(1500, 'ADR Certificate Notes must be less than or equal to 1500 characters'),
]),
});

Expand Down

0 comments on commit 527b8f3

Please sign in to comment.