Browse Source

doc fix

pull/23865/head
Fahri Gedik 4 months ago
parent
commit
bfa10da4a6
  1. 6
      docs/en/framework/ui/angular/form-validation.md

6
docs/en/framework/ui/angular/form-validation.md

@ -232,7 +232,7 @@ buildForm() {
```html
<abp-modal [(visible)]="isModalVisible" [busy]="modalBusy">
<ng-template #abpHeader>
<h3>{{ (selected?.id ? 'AbpIdentity::Edit' : 'AbpIdentity::NewUser') | abpLocalization }}</h3>
<h3>{%{{ (selected?.id ? 'AbpIdentity::Edit' : 'AbpIdentity::NewUser') | abpLocalization }}%}</h3>
</ng-template>
<ng-template #abpBody>
@ -240,7 +240,7 @@ buildForm() {
<form [formGroup]="form" (ngSubmit)="save()">
<ul ngbNav #nav="ngbNav" class="nav-tabs">
<li ngbNavItem>
<a ngbNavLink>{{ 'AbpIdentity::UserInformations' | abpLocalization }}</a>
<a ngbNavLink>{%{{ 'AbpIdentity::UserInformations' | abpLocalization }}%}</a>
<ng-template ngbNavContent>
<!-- Automatically displays all entity fields and their validation -->
<abp-extensible-form [selectedRecord]="selected"></abp-extensible-form>
@ -248,7 +248,7 @@ buildForm() {
</li>
<li ngbNavItem>
<a ngbNavLink>{{ 'AbpIdentity::Roles' | abpLocalization }}</a>
<a ngbNavLink>{%{{ 'AbpIdentity::Roles' | abpLocalization }}%}</a>
<ng-template ngbNavContent>
<!-- Dynamic roles list: nested FormArray and FormGroup -->
@for (roleGroup of roleGroups; track $index; let i = $index) {

Loading…
Cancel
Save