akveo / ngx-admin-bundle-support

Support repository for ngx-admin backend bundles with issues tracking, instructions and code samples
58 stars 32 forks source link

Incorrect placehoder for formControlName="firstName" on user.component.html #71

Open wleecarter opened 4 years ago

wleecarter commented 4 years ago

In the NestJS Starter Kit, src/app/pages/users/user/user.component.html:

placeholder currently equals "Last Name", it should be "First Name"

<input nbInput id="firstName" formControlName="firstName"
               [status]="(firstName?.hasError('minlength') || firstName?.hasError('maxlength')) ? 'danger' : 'primary'"
               class="form-control" placeholder="Last Name">
denStrigo commented 4 years ago

@wleecarter Thank you. :thumbsup: