Skip to content

Commit

Permalink
Feat/cb2 14457 (#1647)
Browse files Browse the repository at this point in the history
* feat(cb2-14457): remove id and name

* feat(cb2-14457): add checkbox to ids

* feat(cb2-14457): character count id fix

* feat(cb2-14457): character count corrections

* feat(cb2-14457): add additional details

* feat(cb2-14457): resolve validator message mismatch

* feat(cb2-14457): amend additional examiner notes validator

---------

Co-authored-by: pbardy2000 <146740183+pbardy2000@users.noreply.github.com>
  • Loading branch information
tomcrawleyy and pbardy2000 authored Nov 15, 2024
1 parent 19aa63a commit e9a4fae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ 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(1500, 'Additional Examiner Notes must be less han or equal to 1024 characters'),
this.commonValidators.maxLength(1024, 'Additional Examiner Notes must be less han or equal to 1024 characters'),
]),
techRecord_adrDetails_additionalExaminerNotes: this.fb.control<AdditionalExaminerNotes[] | null>(null),
techRecord_adrDetails_adrCertificateNotes: this.fb.control<string | null>(null, [
Expand Down

0 comments on commit e9a4fae

Please sign in to comment.