Skip to content

Commit

Permalink
Fixed #47: show home page statistics and release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
realLiangshiwei committed Nov 20, 2019
1 parent 9a8c519 commit 0a2f845
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/LogDashboard/LogDashboard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageIconUrl>https://raw.githubusercontent.com/liangshiw/LogDashboard/master/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/liangshiw/LogDashboard</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<Version>1.4</Version>
<Version>1.4.1</Version>
<Company>liangshiwei</Company>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<LangVersion>8.0</LangVersion>
Expand Down
8 changes: 4 additions & 4 deletions src/LogDashboard/Views/Dashboard/Home.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div class="card p-4">
<div class="card-body d-flex justify-content-between align-items-center">
<div>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["allCount"]</span>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["allCount"].ToString()</span>
<span class="font-weight-light">所有日志</span>
</div>
<div class="h2 text-muted">
Expand All @@ -29,7 +29,7 @@
<div class="card p-4">
<div class="card-body d-flex justify-content-between align-items-center">
<div>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["unique"]</span>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["unique"].ToString()</span>
<span class="font-weight-light">不重复的日志</span>
</div>
<div class="h2 text-muted">
Expand All @@ -42,7 +42,7 @@
<div class="card p-4">
<div class="card-body d-flex justify-content-between align-items-center">
<div>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["todayCount"]</span>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["todayCount"].ToString()</span>
<span class="font-weight-light">今天的日志</span>
</div>
<div class="h2 text-muted">
Expand All @@ -55,7 +55,7 @@
<div class="card p-4">
<div class="card-body d-flex justify-content-between align-items-center">
<div>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["hourCount"]</span>
<span class="h4 d-block font-weight-normal mb-2">@ViewData["hourCount"].ToString()</span>
<span class="font-weight-light">一小时之内</span>
</div>
<div class="h2 text-muted">
Expand Down
8 changes: 4 additions & 4 deletions src/LogDashboard/Views/Dashboard/Home.generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public override void Execute()


#line 19 "..\..\Views\Dashboard\Home.cshtml"
Write(ViewData["allCount"]);
Write(ViewData["allCount"].ToString());


#line default
Expand Down Expand Up @@ -121,7 +121,7 @@ public override void Execute()


#line 32 "..\..\Views\Dashboard\Home.cshtml"
Write(ViewData["unique"]);
Write(ViewData["unique"].ToString());


#line default
Expand Down Expand Up @@ -154,7 +154,7 @@ public override void Execute()


#line 45 "..\..\Views\Dashboard\Home.cshtml"
Write(ViewData["todayCount"]);
Write(ViewData["todayCount"].ToString());


#line default
Expand Down Expand Up @@ -187,7 +187,7 @@ public override void Execute()


#line 58 "..\..\Views\Dashboard\Home.cshtml"
Write(ViewData["hourCount"]);
Write(ViewData["hourCount"].ToString());


#line default
Expand Down

0 comments on commit 0a2f845

Please sign in to comment.