Browse Source

Merge pull request #22918 from abpframework/Manage.cshtml

Remove redundant header and horizontal rule from profile management tabs
pull/22983/head
Yağmur Çelik 1 year ago
committed by GitHub
parent
commit
3d54a1c341
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml
  2. 3
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.css

7
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml

@ -13,6 +13,11 @@
<abp-script-bundle name="@typeof(ManageModel).FullName"/>
}
@section styles {
<abp-style src="/Pages/Account/Manage.css" />
}
@if (!Model.ReturnUrl.IsNullOrWhiteSpace())
{
<abp-row class="mb-2">
@ -31,8 +36,6 @@
@foreach (var group in Model.ProfileManagementPageCreationContext.Groups)
{
<abp-tab title="@group.DisplayName">
<h2>@group.DisplayName</h2>
<hr class="my-4" />
@await Component.InvokeAsync(group.ComponentType, new
{
parameter = group.Parameter

3
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.css

@ -0,0 +1,3 @@
#ProfileManagementWrapper .tab-content {
padding-top: 0 !important;
}
Loading…
Cancel
Save