Skip to content

Commit 5d546c0

Browse files
authored
fix: Application creation time in reverse order (#4118)
1 parent 9396166 commit 5d546c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/application/serializers/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def get_query_set(self, instance: Dict, workspace_manage: bool, is_x_pack_ee: bo
345345
if create_user is not None:
346346
application_query_set = application_query_set.filter(user_id=create_user)
347347
application_custom_sql_query_set = application_query_set
348-
application_query_set = application_query_set.order_by("-update_time")
348+
application_query_set = application_query_set.order_by("-create_time")
349349

350350
return {'folder_query_set': folder_query_set,
351351
'application_query_set': application_query_set,

0 commit comments

Comments
 (0)