My project has an unusual issue where it builds and runs perfectly, but when attempting to build it on the SYS server, I encounter the following error:
ERROR in (html) Property 'ExampleDate' does not exist on type 'ExampleComponent'.
(I have disguised the actual property names for privacy). Eliminating this from my html/ts resolves the build issue, and all other form components function correctly.
My familiarity with this project spans a long time, and I have performed numerous check-ins and builds daily without any complications. Can you identify anything out of the ordinary?
.html
<form [formGroup]="myForm" class="my-form" novalidate>
<div class="inline">
<mat-form-field>
<input matInput disabled [(value)]="someValue" [matDatepicker]="ExampleDate"
placeholder="Example Date" formControlName="ExampleDate">
</mat-form-field>
</div>
.ts
buildExampleForm() {
this.myForm = this.form.group({
ExampleDate: ['', ''],
SomeOtherExampleDate: ['', ''],
...