Skip to content

Commit

Permalink
Merge pull request #8272 from abpframework/pageheader-fix
Browse files Browse the repository at this point in the history
Page header updates
  • Loading branch information
hikalkan committed Mar 30, 2021
2 parents eca862c + a43c68b commit 52e396f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion docs/en/Migration-Guides/Abp-4_3.md
@@ -1,3 +1,6 @@
# ABP Framework 4.x to 4.3 Migration Guide

TODO
## Blazor UI

- `PageHeader` component has been moved to the`Volo.Abp.AspNetCore.Components.Web.Theming.Layout` namespace.

Expand Up @@ -32,6 +32,11 @@
}
<Column>
<Row Class="justify-content-end mx-n1">
@if (Toolbar == null)
{
@ChildContent
}

@foreach (var toolbarItemRender in ToolbarItemRenders)
{
<Column ColumnSize="ColumnSize.IsAuto" Class="px-1 pt-2">
Expand Down
Expand Up @@ -31,9 +31,6 @@ public partial class PageHeader : ComponentBase
[Parameter]
public PageToolbar Toolbar { get; set; }

[Parameter]
public string PageName { get; set; }

public PageHeader()
{
BreadcrumbItems = new List<BreadcrumbItem>();
Expand Down

0 comments on commit 52e396f

Please sign in to comment.