File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/en/framework/ui/angular Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -232,23 +232,23 @@ buildForm() {
232232``` html
233233<abp-modal [(visible)] =" isModalVisible" [busy] =" modalBusy" >
234234 <ng-template #abpHeader >
235- <h3 >{{ (selected?.id ? 'AbpIdentity::Edit' : 'AbpIdentity::NewUser') | abpLocalization }}</h3 >
235+ <h3 >{%{{ (selected?.id ? 'AbpIdentity::Edit' : 'AbpIdentity::NewUser') | abpLocalization }}% }</h3 >
236236 </ng-template >
237237
238238 <ng-template #abpBody >
239239 @if (form) {
240240 <form [formGroup] =" form" (ngSubmit) =" save()" >
241241 <ul ngbNav #nav =" ngbNav" class =" nav-tabs" >
242242 <li ngbNavItem >
243- <a ngbNavLink >{{ 'AbpIdentity::UserInformations' | abpLocalization }}</a >
243+ <a ngbNavLink >{%{{ 'AbpIdentity::UserInformations' | abpLocalization }}% }</a >
244244 <ng-template ngbNavContent >
245245 <!-- Automatically displays all entity fields and their validation -->
246246 <abp-extensible-form [selectedRecord] =" selected" ></abp-extensible-form >
247247 </ng-template >
248248 </li >
249249
250250 <li ngbNavItem >
251- <a ngbNavLink >{{ 'AbpIdentity::Roles' | abpLocalization }}</a >
251+ <a ngbNavLink >{%{{ 'AbpIdentity::Roles' | abpLocalization }}% }</a >
252252 <ng-template ngbNavContent >
253253 <!-- Dynamic roles list: nested FormArray and FormGroup -->
254254 @for (roleGroup of roleGroups; track $index; let i = $index) {
You can’t perform that action at this time.
0 commit comments