fix: change find order of category to asc
This commit is contained in:
@@ -196,7 +196,7 @@ export class DanakServicesService {
|
||||
async getCategoriesUserSide() {
|
||||
const categories = await this.danakServicesCategoryRepository.find({
|
||||
where: { isActive: true, deletedAt: IsNull() },
|
||||
order: { order: "DESC" },
|
||||
order: { order: "ASC" },
|
||||
});
|
||||
return {
|
||||
categories,
|
||||
|
||||
Reference in New Issue
Block a user