maliming
3 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.BlazoriseUI/AbpCrudPageBase.cs
|
|
|
@ -309,7 +309,7 @@ public abstract class AbpCrudPageBase< |
|
|
|
{ |
|
|
|
CurrentSorting = e.Columns |
|
|
|
.Where(c => c.SortDirection != SortDirection.Default) |
|
|
|
.Select(c => c.Field + (c.SortDirection == SortDirection.Descending ? " DESC" : "")) |
|
|
|
.Select(c => c.SortField + (c.SortDirection == SortDirection.Descending ? " DESC" : "")) |
|
|
|
.JoinAsString(","); |
|
|
|
CurrentPage = e.Page; |
|
|
|
|
|
|
|
|