mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: Application creation time in reverse order (#4118)
This commit is contained in:
parent
9396166cbb
commit
5d546c0a6f
|
|
@ -345,7 +345,7 @@ class Query(serializers.Serializer):
|
|||
if create_user is not None:
|
||||
application_query_set = application_query_set.filter(user_id=create_user)
|
||||
application_custom_sql_query_set = application_query_set
|
||||
application_query_set = application_query_set.order_by("-update_time")
|
||||
application_query_set = application_query_set.order_by("-create_time")
|
||||
|
||||
return {'folder_query_set': folder_query_set,
|
||||
'application_query_set': application_query_set,
|
||||
|
|
|
|||
Loading…
Reference in New Issue