Skip to content

Commit

Permalink
feat(CB2-14459): fix body description code
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcrawleyy committed Dec 12, 2024
1 parent e2860b8 commit bc280a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class BodySectionEditComponent implements OnInit, OnDestroy {
techRecord_bodyType_description: this.fb.control<string | null>(null, [
this.commonValidators.required('Body type is required'),
]),
techRecord_bodyType_code: this.fb.control<string | null>({ value: null, disabled: true }, []),
techRecord_bodyType_code: this.fb.control<string | null>(null, []),
techRecord_brakes_dtpNumber: this.fb.control<string | null>(null, [
this.commonValidators.required('DTp Number is required'),
]),
Expand Down Expand Up @@ -191,7 +191,7 @@ export class BodySectionEditComponent implements OnInit, OnDestroy {
techRecord_bodyModel: this.fb.control<string | null>(null, [
this.commonValidators.maxLength(20, 'Body model must be less than or equal to 20'),
]),
techRecord_bodyType_code: this.fb.control<string | null>({ value: null, disabled: true }, []),
techRecord_bodyType_code: this.fb.control<string | null>(null, []),
techRecord_bodyType_description: this.fb.control<string | null>(null, [
this.commonValidators.required('Body type is required'),
]),
Expand Down

0 comments on commit bc280a3

Please sign in to comment.