no message

This commit is contained in:
kittapath 2024-10-21 11:12:41 +07:00
parent b2ccdfdf30
commit 9abb5ed8e4
2 changed files with 4 additions and 4 deletions

View file

@ -63,7 +63,7 @@ export class ProfileEditController extends Controller {
);
}),
)
.orderBy("ProfileEdit.createdAt", "ASC")
.orderBy("ProfileEdit.createdAt", "DESC")
.skip((page - 1) * pageSize)
.take(pageSize)
.getManyAndCount();
@ -117,7 +117,7 @@ export class ProfileEditController extends Controller {
);
}),
)
.orderBy("ProfileEdit.createdAt", "ASC")
.orderBy("ProfileEdit.createdAt", "DESC")
.skip((page - 1) * pageSize)
.take(pageSize)
.getManyAndCount();

View file

@ -68,7 +68,7 @@ export class ProfileEditEmployeeController extends Controller {
);
}),
)
.orderBy("ProfileEdit.createdAt", "ASC")
.orderBy("ProfileEdit.createdAt", "DESC")
.skip((page - 1) * pageSize)
.take(pageSize)
.getManyAndCount();
@ -122,7 +122,7 @@ export class ProfileEditEmployeeController extends Controller {
);
}),
)
.orderBy("ProfileEdit.createdAt", "ASC")
.orderBy("ProfileEdit.createdAt", "DESC")
.skip((page - 1) * pageSize)
.take(pageSize)
.getManyAndCount();