mat-datetimepicker icon indicating copy to clipboard operation
mat-datetimepicker copied to clipboard

Datetime picker crash when mat-form-field apperance outline

Open GibranPolonsky opened this issue 5 years ago • 0 comments

Uncaught TypeError: Cannot read property 'y' of undefined

Example code: <mat-form-field class="example-full-width" appearance="outline"> <mat-label>Number of bonds for sale</mat-label> <input matInput type="text" placeholder="Number of bonds for sale" formControlName="numberForSale" autocomplete="off"/> <mat-error *ngIf="form.get('numberForSale').touched && form.get('numberForSale').errors?.required"> <strong>{{ 'AUTH.VALIDATION.REQUIRED_FIELD' | translate }}</strong> </mat-error> <mat-error *ngIf="form.get('numberForSale').touched && form.get('numberForSale').errors?.pattern"> Must be a number </mat-error> </mat-form-field>

GibranPolonsky avatar Sep 09 '19 17:09 GibranPolonsky