Skip to content

Commit

Permalink
Merge pull request #546 from neozhu/jsisolation
Browse files Browse the repository at this point in the history
Update Users.razor
  • Loading branch information
neozhu authored Oct 22, 2023
2 parents 3f1c7c8 + 5c12ca1 commit b152476
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Blazor.Server.UI/Pages/Identity/Users/Users.razor
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@
@L["Selected"]: @_selectedItems.Count
</FooterTemplate>
</PropertyColumn>
<PropertyColumn Property="x => x.UserName" Title="@L[_currentDto.GetMemberDescription(x=>x.UserName)]" CellClass="d-flex align-items-center">
<PropertyColumn Property="x => x.UserName" Title="@L[_currentDto.GetMemberDescription(x=>x.UserName)]">
<CellTemplate>

<div class="d-flex align-items-center">
<MudBadge Color="@(isOnline(context.Item.UserName)? Color.Success :Color.Error)" Overlap="false" Dot="true" Bordered="true">
<MudAvatar>
@if (string.IsNullOrEmpty(context.Item.ProfilePictureDataUrl))
Expand All @@ -225,7 +225,7 @@
<MudText Class="ml-2 align-self-center">@context.Item.UserName</MudText>
<MudText Typo="Typo.body2" Class="ml-2 align-self-center mud-text-secondary" >@context.Item.Email</MudText>
</div>

</div>
</CellTemplate>
</PropertyColumn>
<PropertyColumn Property="x => x.Email" Title="@L["Display Name / PhoneNumber"]">
Expand Down

0 comments on commit b152476

Please sign in to comment.