Skip to content

Commit

Permalink
change ver to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaoHans committed Nov 1, 2024
1 parent 12a7286 commit d1569c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>Abp.RadzenUI</RootNamespace>
<PackageId>AbpRadzen.Blazor.Server.UI</PackageId>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<Authors>ShaoHans</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
<Columns>
<RadzenDataGridColumn Property="@nameof(AuditLogDto.Url)" Title="@L["Url"]" Frozen="true" Sortable="false" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.UserName)" Title="@L["UserName"]" Sortable="false" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.ClientIpAddress)" Title="@L["ClientIpAddress"]" Sortable="false" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.ClientIpAddress)" Title="@L["ClientIpAddress"]" Sortable="false">
<Template>
<RadzenLabel>@context.ClientIpAddress?.Replace("::ffff:","")</RadzenLabel>
</Template>
</RadzenDataGridColumn>
<RadzenDataGridColumn Property="@nameof(AuditLogDto.HttpMethod)" Title="@L["HttpMethod"]" Sortable="false" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.HttpStatusCode)" Title="@L["HttpStatusCode"]" Sortable="false" >
<Template>
Expand All @@ -38,7 +42,7 @@
}
</Template>
</RadzenDataGridColumn>
<RadzenDataGridColumn Property="@nameof(AuditLogDto.ExecutionTime)" Title="@L["ExecutionTime"]" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.ExecutionTime)" Title="@L["ExecutionTime"]" Width="200px" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.ExecutionDuration)" Filterable="false" Sortable="false" Title="@L["ExecutionDuration"]" />
<RadzenDataGridColumn Property="@nameof(AuditLogDto.BrowserInfo)" Filterable="false" Sortable="false" Title="@L["BrowserInfo"]">
<Template>
Expand Down

0 comments on commit d1569c5

Please sign in to comment.