Browse Source
Replace tooltip span with Tooltip component
pull/24374/head
maliming
9 months ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
3 additions and
1 deletions
-
modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor/Components/ResourcePermissionManagementModal.razor
|
|
|
@ -47,7 +47,9 @@ |
|
|
|
<DataGridColumn TItem="ResourcePermissionGrantInfoDto" Field="@nameof(ResourcePermissionGrantInfoDto.ProviderName)" Caption="@L["ResourcePermissionTarget"]" Sortable="false"> |
|
|
|
<DisplayTemplate> |
|
|
|
@{ |
|
|
|
<span class="d-inline-block bg-light rounded-pill px-2 me-1 ms-1 mb-1" data-bs-toggle="tooltip" data-bs-placement="right" data-bs-title="@context.ProviderNameDisplayName">@context.ProviderName</span> |
|
|
|
<Tooltip Text="@context.ProviderNameDisplayName" Placement="TooltipPlacement.Right" Style="float: left;"> |
|
|
|
<span class="d-inline-block bg-light rounded-pill px-2 me-1 ms-1 mb-1">@context.ProviderName</span> |
|
|
|
</Tooltip> |
|
|
|
@context.ProviderDisplayName |
|
|
|
} |
|
|
|
</DisplayTemplate> |
|
|
|
|