Skip to content

Commit 6d6e844

Browse files
committed
Improve the management page UI
1 parent 14c8463 commit 6d6e844

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<LangVersion>latest</LangVersion>
4-
<Version>3.4.0</Version>
4+
<Version>3.5.0-preview.1</Version>
55
<NoWarn>$(NoWarn);CS1591</NoWarn>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Authors>EasyAbp Team</Authors>

src/EasyAbp.NotificationService.Web/Pages/NotificationService/Notifications/Notification/Index.cshtml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
@page
2-
@using EasyAbp.NotificationService.Permissions
3-
@using Microsoft.AspNetCore.Authorization
42
@using Microsoft.AspNetCore.Mvc.Localization
53
@using Volo.Abp.AspNetCore.Mvc.UI.Layout
64
@using EasyAbp.NotificationService.Web.Pages.NotificationService.Notifications.Notification
@@ -9,10 +7,9 @@
97
@model IndexModel
108
@inject IPageLayout PageLayout
119
@inject IHtmlLocalizer<NotificationServiceResource> L
12-
@inject IAuthorizationService Authorization
1310
@{
14-
PageLayout.Content.Title = L["Notification"].Value;
15-
PageLayout.Content.BreadCrumb.Add(L["Menu:Notification"].Value);
11+
PageLayout.Content.Title = L["Menu:Notification"].Value;
12+
PageLayout.Content.BreadCrumb.Add(L["Menu:NotificationService"].Value);
1613
PageLayout.Content.MenuItemName = NotificationServiceMenus.Notification;
1714
}
1815

@@ -26,13 +23,6 @@
2623
}
2724

2825
<abp-card>
29-
<abp-card-header>
30-
<abp-row>
31-
<abp-column size-md="_6">
32-
<abp-card-title>@L["Notification"]</abp-card-title>
33-
</abp-column>
34-
</abp-row>
35-
</abp-card-header>
3626
<abp-card-body>
3727
<abp-row class="mb-3">
3828
<a abp-collapse-id="NotificationCollapse" class="text-secondary">@L["TableFilter"] </a>

0 commit comments

Comments
 (0)