Skip to content

Commit

Permalink
Merge pull request #2338 from TimaQT/features/timaqt/EMBCESSMOD-5044-1
Browse files Browse the repository at this point in the history
EMBCESSMOD-5044 - Autocomplete disabled for Full Name
  • Loading branch information
ytqsl authored Jun 10, 2024
2 parents 7202d03 + 7da21e3 commit 15c3792
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="col-md-5">
<mat-form-field appearance="outline">
<mat-label>Full Name</mat-label>
<input formControlName="hostName" maxlength="255" matInput placeholder="Enter Name" />
<input formControlName="hostName" maxlength="255" matInput placeholder="Enter Name" autocomplete="off" />
@if (
supportDeliveryFormControl?.hostName.invalid &&
supportDeliveryFormControl?.hostName.hasError('whitespaceError')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="col-md-5">
<mat-form-field appearance="outline">
<mat-label>Full Name</mat-label>
<input formControlName="hostName" maxlength="255" matInput placeholder="Enter Name" />
<input formControlName="hostName" maxlength="255" matInput placeholder="Enter Name" autocomplete="off" />
@if (
supportDeliveryFormControl?.hostName.invalid &&
supportDeliveryFormControl?.hostName.hasError('whitespaceError')
Expand Down

0 comments on commit 15c3792

Please sign in to comment.