Browse Source

Fix Password localization

pull/5973/head
Mladen Macanovic 6 years ago
parent
commit
1d84ce4f8a
  1. 4
      modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor

4
modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor

@ -124,7 +124,7 @@
</TextEdit> </TextEdit>
</Field> </Field>
</Validation> </Validation>
<Validation> <Validation MessageLocalizer="@ML.Localize">
<Field> <Field>
<FieldLabel>@L["DisplayName:Password"]</FieldLabel> <FieldLabel>@L["DisplayName:Password"]</FieldLabel>
<TextEdit Role="TextRole.Password" @bind-Text="NewEntity.Password"> <TextEdit Role="TextRole.Password" @bind-Text="NewEntity.Password">
@ -233,7 +233,7 @@
</TextEdit> </TextEdit>
</Field> </Field>
</Validation> </Validation>
<Validation> <Validation MessageLocalizer="@ML.Localize">
<Field> <Field>
<FieldLabel>@L["DisplayName:Password"]</FieldLabel> <FieldLabel>@L["DisplayName:Password"]</FieldLabel>
<TextEdit Role="TextRole.Password" @bind-Text="EditingEntity.Password"> <TextEdit Role="TextRole.Password" @bind-Text="EditingEntity.Password">

Loading…
Cancel
Save